Переход на относительные URL подмодулей

This commit is contained in:
Tolik Trek 2026-05-16 23:35:41 +10:00
parent 477e4f8327
commit faa4f5b006
6 changed files with 20 additions and 11 deletions

2
.gitmodules vendored
View File

@ -1,4 +1,4 @@
[submodule "Shared_Includes"] [submodule "Shared_Includes"]
branch = main branch = main
path = Shared_Includes path = Shared_Includes
url = https://github.com/Tolik-Trek/Shared_Includes.git url = ../Shared_Includes.git

0
mhmt → Bin/mhmt Executable file → Normal file
View File

BIN
Bin/mhmt.exe Normal file

Binary file not shown.

View File

@ -1,10 +0,0 @@
#! /bin/zsh
rm ./build/fmain.bin
rm ./build/format.hrs
sjasmplus --nologo -Wall --syntax=w --fullpath --msg=war --color=on --lst=./build/fmain.lst --raw=./build/fmain.bin ./fmain.asm
echo FMain compilation DONE
./mhmt -hst -zxh ./build/fmain.bin ./build/format.hrs
echo Packing fmain.bin DONE
echo Main compilation starts
sjasmplus --nologo -Wall --syntax=w --fullpath --msg=war --color=on --lst=./build/main.lst --raw=./build/fformat/fformat.exe ./main.asm
echo Main compilation DONE

9
RUN/Build.bat Normal file
View File

@ -0,0 +1,9 @@
del .\build\fmain.bin
del .\build\format.hrs
sjasmplus.exe --nologo -Wall --syntax=w -Wno-emptystr --fullpath --msg=war --color=on --lst=./build/fmain.lst --raw=./build/fmain.bin ./fmain.asm
@echo FMain compilation DONE
mhmt.exe -hst -zxh .\build\fmain.bin .\build\format.hrs
@echo Packing fmain.bin DONE
@echo Main compilation starts
sjasmplus.exe --nologo -Wall --syntax=w -Wno-emptystr --fullpath --msg=war --color=on --lst=./build/main.lst --raw=./build/fformat\fformat.exe ./main.asm
@echo Main compilation DONE

10
RUN/Build.sh Normal file
View File

@ -0,0 +1,10 @@
#! /bin/zsh
rm ./build/fmain.bin
rm ./build/format.hrs
sjasmplus --nologo -Wall --syntax=w -Wno-emptystr --fullpath --msg=war --color=on --lst=./build/fmain.lst --raw=./build/fmain.bin ./fmain.asm
echo FMain compilation DONE
./mhmt -hst -zxh ./build/fmain.bin ./build/format.hrs
echo Packing fmain.bin DONE
echo Main compilation starts
sjasmplus --nologo -Wall --syntax=w -Wno-emptystr --fullpath --msg=war --color=on --lst=./build/main.lst --raw=./build/fformat/fformat.exe ./main.asm
echo Main compilation DONE