1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 21:29:30 +00:00
C02/vcs/template.c02
2018-01-28 14:44:10 -05:00

14 lines
324 B
Plaintext

/* Atari VCS C02 Program Template */
#include <vcshead.h02> //TIA and RIOT Registers
//ROM Start Address - $F800 for 2K, $F000 for 4K Cartridge
#pragma origin $F000
irqbrk: //Code to Execute when BRK Instruction is Encountered
start: //Start of Program Code
goto start;
#include <vcsfoot.h02> //Finalization Code