mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
10 lines
166 B
Batchfile
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 |