mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
- Generic serial interface client support files have been added. This mode of operation is not documented in the RomWBW User Guide. Refer to <https://github.com/durgadas311/cpnet-z80>. - Minor patch to NULU so it does not spit out a directory listing every time it is invoked.
17 lines
573 B
Batchfile
17 lines
573 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=%~dp0..\..\Tools
|
|
|
|
set PATH=%TOOLS%\zxcc;%PATH%
|
|
set CPMDIR80=%TOOLS%\cpm\
|
|
|
|
zxcc nulu --O -cpn12mt "-<30" --A mt011/cpnet12/*.* --L --X || exit /b
|
|
zxcc nulu --O -cpn3mt "-<30" --A mt011/cpnet3/*.* --L --X || exit /b
|
|
zxcc nulu --O -cpn12duo "-<30" --A duo/cpnet12/*.* --L --X || exit /b
|
|
zxcc nulu --O -cpn3duo "-<30" --A duo/cpnet3/*.* --L --X || exit /b
|
|
zxcc nulu --O -cpn12ser "-<30" --A serial/cpnet12/*.* --L --X || exit /b
|
|
zxcc nulu --O -cpn3ser "-<30" --A serial/cpnet3/*.* --L --X || exit /b
|
|
|
|
copy *.lbr ..\..\Binary\CPNET
|