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.
18 lines
460 B
18 lines
460 B
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=..\..\..\Tools
|
|
|
|
set PATH=%TOOLS%\zx;%PATH%
|
|
|
|
set ZXBINDIR=%TOOLS%\cpm\bin\
|
|
set ZXLIBDIR=%TOOLS%\cpm\lib\
|
|
set ZXINCDIR=%TOOLS%\cpm\include\
|
|
|
|
zx Z80ASM -ZMO-RW01/H || exit /b
|
|
zx 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
|