Skip to content

Commit

Permalink
Added typical batch scripts to assemble roms.
Browse files Browse the repository at this point in the history
  • Loading branch information
lab313ru committed Jan 25, 2023
1 parent 56c7887 commit 2519256
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
12 changes: 12 additions & 0 deletions assemble_as.bat
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions assemble_asm68k.bat
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions assemble_vasm.bat
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2519256

Please sign in to comment.