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.
26 lines
454 B
26 lines
454 B
@echo off
|
|
|
|
setlocal
|
|
|
|
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/
|
|
|
|
call :asm SysCopy || goto :eof
|
|
call :asm Assign || goto :eof
|
|
call :asm Format || goto :eof
|
|
call :asm Talk || goto :eof
|
|
|
|
zx Z80ASM -SYSGEN/F
|
|
|
|
goto :eof
|
|
|
|
:asm
|
|
echo.
|
|
echo Building %1...
|
|
tasm -t80 -b -g3 -fFF %1.asm %1.com %1.lst
|
|
goto :eof
|