forked from MirrorRepos/RomWBW
Updated CBIOS to look for PROFILE.SUB on the boot drive and SUBMIT it automatically at cold boot if it exists. Also patched SUBMIT.COM to force temporary file onto A: to ensure immediate execution of SUBMITed files.
25 lines
498 B
Batchfile
25 lines
498 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../Tools
|
|
|
|
set PATH=%TOOLS%\tasm32;%TOOLS%\zx;%PATH%
|
|
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
set ZXBINDIR=%TOOLS%/cpm/bin/
|
|
set ZXLIBDIR=%TOOLS%/cpm/lib/
|
|
set ZXINCDIR=%TOOLS%/cpm/include/
|
|
|
|
echo.
|
|
echo Building CBIOS for RomWBW...
|
|
echo.
|
|
tasm -t80 -g3 -dPLTWBW cbios.asm cbios_wbw.bin cbios_wbw.lst
|
|
if errorlevel 1 goto :eof
|
|
|
|
echo.
|
|
echo Building CBIOS for UNA...
|
|
echo.
|
|
tasm -t80 -g3 -dPLTUNA cbios.asm cbios_una.bin cbios_una.lst
|
|
if errorlevel 1 goto :eof
|