1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 21:29:30 +00:00
C02/test/c02.bat
2019-11-18 01:38:23 -05:00

10 lines
166 B
Batchfile

@ECHO OFF
IF EXIST %1.c02 GOTO COMPILE
ECHO File %1.c02 not found
GOTO EOF
:COMPILE
ECHO Compiling File %1.c02
..\c02.exe -h header %1 >%1.dbg
:EOF