forked from MirrorRepos/RomWBW
The TUNE application replaces the previous PTXPLAY application and now supports MYM sounds files in addition to PT2 and PT3.
13 lines
326 B
Batchfile
13 lines
326 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
|