mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- Attempting to sync ZXCC with latest source in repository by Tony Nicholson. Generally a failure, but it is closer.
16 lines
355 B
Batchfile
16 lines
355 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../Tools
|
|
set BIN=..\..\Binary
|
|
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t180 -g3 -fFF -DAPPBOOT hdiag.asm hdiag.com hdiag_com.lst || exit /b
|
|
tasm -t180 -g3 -fFF -DROMBOOT hdiag.asm hdiag.rom hdiag_rom.lst || exit /b
|
|
|
|
copy hdiag.rom %BIN% || exit /b
|
|
copy hdiag.com %BIN% || exit /b
|