mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-12-22 13:30:38 +00:00
9 lines
552 B
Batchfile
9 lines
552 B
Batchfile
@echo ======================== APPLE 1 =================================================
|
|
call kickc -t asm6502 -D=APPLE1 test.c -o test_apple1.prg -e
|
|
copy test.prg test_apple1.prg
|
|
@echo ======================== VIC20 ===================================================
|
|
call kickc -t VIC20 -D=VIC20 test.c -o test_vic20.prg -e
|
|
rem call kickc -vasmoptimize -vasmout -vcreate -vfragment -vliverange -vloop -vnonoptimize -voptimize -vparse -vsequence -vsizeinfo -vunroll -vuplift -t VIC20 -D=VIC20 test.c -o test_vic20.prg -e
|
|
copy test.prg test_vic20.prg
|
|
|