- 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
501 B
Batchfile
16 lines
501 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
if exist *.bin del *.bin
|
|
if exist *.com del *.com
|
|
if exist *.lst del *.lst
|
|
if exist *.hex del *.hex
|
|
if exist *.prn del *.prn
|
|
|
|
setlocal & cd XM && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd FDU && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd Tune && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd FAT && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd I2C && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd ramtest && call Clean || exit /b 1 & endlocal
|