mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-10-31 10:14:09 +00:00
8 lines
183 B
Plaintext
8 lines
183 B
Plaintext
; Minimal Assembly Language Header for C02
|
|
ORG $0200 ;Program Start Address
|
|
|
|
START: JMP MAIN ;Execute Program
|
|
|
|
EXIT: BRK ;Usually BRK if returning to Monitor
|
|
|