mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:33:12 -06:00
- Removed duplicate files in disk image process - Moved all applications to individual folders
14 lines
310 B
Batchfile
14 lines
310 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=..\..\..\Tools
|
|
set PATH=%TOOLS%\tasm32;%TOOLS%\zxcc;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
set CPMDIR80=%TOOLS%/cpm/
|
|
|
|
:: tasm -t80 -g3 -fFF sysgen.asm sysgen.com sysgen.lst || exit /b
|
|
|
|
zxcc Z80ASM -SYSGEN/F || exit /b
|
|
|
|
copy /Y sysgen.com ..\..\..\Binary\Apps\ || exit /b
|