- Integrate RAMTEST app from Andrew into mainline build process. - Enhance DSKNGTST app to test on any arbitrary PPI port. NOTE TO USERS: RAMTEST app is currently only compatible with SBC and MBC hardware.
16 lines
338 B
Batchfile
16 lines
338 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -b -fFF loader.asm loader.bin loader.lst
|
|
tasm -t80 -b -fFF dbgmon.asm dbgmon.bin dbgmon.lst
|
|
|
|
copy /Y /b loader.bin+dbgmon.bin ramtest.com
|
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
copy /Y ramtest.com ..\..\..\Binary\Apps\
|