mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:33:12 -06:00
- Attempting to sync ZXCC with latest source in repository by Tony Nicholson. Generally a failure, but it is closer.
16 lines
396 B
Batchfile
16 lines
396 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=..\..\..\Tools
|
|
|
|
set PATH=%TOOLS%\zxcc;%PATH%
|
|
|
|
set CPMDIR80=%TOOLS%/cpm/
|
|
|
|
zxcc Z80ASM -ZMO-RW01/H || exit /b
|
|
zxcc MLOAD25 -ZMP.COM=ZMPX.COM,ZMO-RW01 || exit /b
|
|
|
|
copy /Y zmp.com ..\..\..\Binary\Apps\ || exit /b
|
|
copy /Y *.ovr ..\..\..\Binary\Apps\ || exit /b
|
|
copy /Y *.hlp ..\..\..\Binary\Apps\ || exit /b
|
|
copy /Y zmp.doc ..\..\..\Binary\Apps\ || exit /b |