forked from MirrorRepos/RomWBW
- ROM Applications document has been consolidated into the Applications document - Martin has done a significant overhaul of the Applications document Co-Authored-By: MartinR <174514335+martinr-uk@users.noreply.github.com>
13 lines
311 B
Batchfile
13 lines
311 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t180 -g3 -fFF inttest.asm inttest.com inttest.lst || exit /b
|
|
|
|
copy /Y inttest.com ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
copy /Y inttest.doc ..\..\..\..\Binary\Apps\Test\ || exit /b
|
|
|