mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-18 21:08:13 +00:00
24 lines
632 B
Batchfile
24 lines
632 B
Batchfile
@rem === BUILD TETRIS ===
|
|
|
|
@SET TARGET=tetris
|
|
|
|
|
|
@rem @echo ======================== VIC20 ===================================================
|
|
@rem call kickc -t VIC20_8K -D=VIC20 %TARGET%.c -o %TARGET%_vic20.prg -e
|
|
@rem copy %TARGET%.prg %TARGET%_vic20.prg
|
|
|
|
|
|
@echo ======================== APPLE 1 =================================================
|
|
call kickc -t apple1 -D=APPLE1 %TARGET%.c -o %TARGET%_apple1.prg -e -Xassembler="-symbolfile"
|
|
copy %TARGET%.prg %TARGET%_apple1.prg
|
|
|
|
@rem call node hexdump > test_apple1.woz
|
|
call node bindump
|
|
|
|
@rem @del *.klog
|
|
|
|
@del *.vs
|
|
@del *.dbg
|
|
@del tetris.prg
|
|
@del tetris_apple1.prg
|