mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- Fix build under Windows (credit to Dean Netherton for finding this). - Fix ReadMe.md file format to remove superfluous junk at top. - Improve RAM size detection (work in progress, not part of normal build).
11 lines
232 B
Batchfile
11 lines
232 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t180 -g3 -fFF cpuspd.asm cpuspd.com cpuspd.lst || exit /b
|
|
|
|
copy /Y cpuspd.com ..\..\..\Binary\Apps\ || exit /b
|