mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:33:12 -06:00
Lars Nelson found a couple issues with ZCPR-D&J and provided an update: - Buffer overflow - Failure of default drive/user
16 lines
303 B
Batchfile
16 lines
303 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../Tools
|
|
|
|
set PATH=%TOOLS%\tasm32;%TOOLS%\zxcc;%PATH%
|
|
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
set CPMDIR80=%TOOLS%/cpm/
|
|
|
|
zxcc M80 -=zcpr/l || exit /b
|
|
zxcc L80 -zcpr,zcpr.bin/n/e || exit /b
|
|
|
|
zxcc M80 -=zcprdemo/l || exit /b
|
|
zxcc L80 -zcprdemo,zcprdemo/n/e || exit /b |