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
355 B
15 lines
355 B
@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
|
|
|