diff --git a/assemble_as.bat b/assemble_as.bat new file mode 100644 index 0000000..ee5996f --- /dev/null +++ b/assemble_as.bat @@ -0,0 +1,12 @@ +@echo off + +set PATH=%PATH%;./bin/; + +set pth=%~n1 +set ext=%~x1 + +for %%i in (%pth%) do (set pth=%%~ni) + +asw -L -olist %pth%_list.txt -o %pth%_new.p %1 +p2bin %pth%_new.p %pth%_new.bin +del %pth%_new.p /q \ No newline at end of file diff --git a/assemble_asm68k.bat b/assemble_asm68k.bat new file mode 100644 index 0000000..a5646fc --- /dev/null +++ b/assemble_asm68k.bat @@ -0,0 +1,10 @@ +@echo off + +set PATH=%PATH%;./bin/; + +set pth=%~n1 +set ext=%~x1 + +for %%i in (%pth%) do (set pth=%%~ni) + +asm68k /p %1,%pth%_new.bin,,%pth%_list.txt \ No newline at end of file diff --git a/assemble_vasm.bat b/assemble_vasm.bat new file mode 100644 index 0000000..3cf2f19 --- /dev/null +++ b/assemble_vasm.bat @@ -0,0 +1,10 @@ +@echo off + +set PATH=%PATH%;./bin/; + +set pth=%~n1 +set ext=%~x1 + +for %%i in (%pth%) do (set pth=%%~ni) + +vasmm68k_mot -Fbin -m68000 -no-opt -L %pth%_list.txt -noialign -o %pth%_new.bin %1 \ No newline at end of file