forked from MirrorRepos/RomWBW
- All XM variants integrated into a single XM.COM app that auto-detects primary serial port. - Include all relevant FD variants for each platform.
31 lines
607 B
Batchfile
31 lines
607 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/
|
|
|
|
call :asm SysCopy || goto :eof
|
|
call :asm Assign || goto :eof
|
|
call :asm Format || goto :eof
|
|
call :asm Talk || goto :eof
|
|
call :asm OSLdr || goto :eof
|
|
|
|
zx Z80ASM -SYSGEN/F
|
|
|
|
setlocal & cd XM125 && call Build || exit /b 1 & endlocal
|
|
|
|
goto :eof
|
|
|
|
:asm
|
|
echo.
|
|
echo Building %1...
|
|
rem tasm -t80 -b -g3 -fFF %1.asm %1.com %1.lst
|
|
tasm -t80 -g3 -fFF %1.asm %1.com %1.lst
|
|
goto :eof |