1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 21:41:31 +00:00
C02/vcs/template.c02

14 lines
324 B
Plaintext
Raw Normal View History

/* 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