mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- Removed duplicate files in disk image process - Moved all applications to individual folders
13 lines
332 B
Batchfile
13 lines
332 B
Batchfile
@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
|