mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 16:34:15 +00:00
13 lines
397 B
Plaintext
13 lines
397 B
Plaintext
; c02 Program Initialization Code for Unexpanded VIC-20
|
|
|
|
;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 $1001 ;Start of BASIC Program
|
|
SYSADR EQM "4110" ;M/L SYS Address
|
|
|
|
INCLUDE "../include/vic.a02" ;Include VIC 20 Common Code
|