mirror of https://github.com/wwarthen/RomWBW.git
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.
23 lines
666 B
23 lines
666 B
@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/
|
|
|
|
zx ZMAC -ZSDOS -/P || exit /b
|
|
zx LINK -ZSDOS.BIN=ZSDOS[LD800] || exit /b
|
|
|
|
tasm -t80 -g3 -fFF loader.asm loader.bin loader.lst || exit /b
|
|
|
|
copy /b ..\zcpr-dj\zcpr.bin + zsdos.bin + ..\cbios\cbios_wbw.bin zsys_wbw.bin || exit /b
|
|
copy /b ..\zcpr-dj\zcpr.bin + zsdos.bin + ..\cbios\cbios_una.bin zsys_una.bin || exit /b
|
|
|
|
copy /b loader.bin + zsys_wbw.bin zsys_wbw.sys || exit /b
|
|
copy /b loader.bin + zsys_una.bin zsys_una.sys || exit /b
|
|
|