mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- Restructured documentation and started updates (much more to go) - Added test app to test HBIOS banking API.
12 lines
252 B
Batchfile
12 lines
252 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -g3 -fFF banktest.asm banktest.com banktest.lst || exit /b
|
|
|
|
copy /Y banktest.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
|