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.
12 lines
332 B
12 lines
332 B
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -g3 -fFF rtc.asm rtc.com rtc.lst || exit /b
|
|
tasm -t80 -g3 -fFF rtchb.asm rtchb.com rtchb.lst || exit /b
|
|
|
|
copy /Y rtc.com ..\..\..\Binary\Apps\ || exit /b
|
|
copy /Y rtchb.com ..\..\..\Binary\Apps\ || exit /b
|
|
|