forked from MirrorRepos/RomWBW
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
338 B
15 lines
338 B
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -b -fFF loader.asm loader.bin loader.lst
|
|
tasm -t80 -b -fFF dbgmon.asm dbgmon.bin dbgmon.lst
|
|
|
|
copy /Y /b loader.bin+dbgmon.bin ramtest.com
|
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
copy /Y ramtest.com ..\..\..\Binary\Apps\
|
|
|