mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-20 03:33:14 +00:00
13 lines
403 B
Plaintext
13 lines
403 B
Plaintext
;c02 Program Initialization Code for VIC-20 with 3K Expansion
|
|
|
|
;Video RAM and ROM
|
|
VICSCN EQU $1E00 ;Video Screen Memory Area (Unexpanded)
|
|
CHRROM EQU $8000 ;Character Generator ROM
|
|
VICCLR EQU $9600 ;Color RAM (Unexpanded)
|
|
|
|
;BASIC Stub Constants
|
|
BASIC EQU $0401 ;Start of BASIC Program
|
|
SYSADR EQM "1038" ;M/L SYS Address
|
|
|
|
INCLUDE "../include/vic.a02" ;Include VIC 20 Common Code
|