diff --git a/.gitmodules b/.gitmodules index 7355856..bc0897b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "Shared_Includes"] branch = main path = Shared_Includes - url = https://github.com/Tolik-Trek/Shared_Includes.git + url = ../Shared_Includes.git diff --git a/mhmt b/Bin/mhmt old mode 100755 new mode 100644 similarity index 100% rename from mhmt rename to Bin/mhmt diff --git a/Bin/mhmt.exe b/Bin/mhmt.exe new file mode 100644 index 0000000..b1592c7 Binary files /dev/null and b/Bin/mhmt.exe differ diff --git a/Build.sh b/Build.sh deleted file mode 100755 index bf6e623..0000000 --- a/Build.sh +++ /dev/null @@ -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 \ No newline at end of file diff --git a/RUN/Build.bat b/RUN/Build.bat new file mode 100644 index 0000000..bc8001d --- /dev/null +++ b/RUN/Build.bat @@ -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 \ No newline at end of file diff --git a/RUN/Build.sh b/RUN/Build.sh new file mode 100644 index 0000000..2a9d501 --- /dev/null +++ b/RUN/Build.sh @@ -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 \ No newline at end of file