2018-01-28 18:30:49 +00:00
|
|
|
; c02 Program Initialization Code for Unexpanded VIC-20
|
|
|
|
|
|
|
|
;Video RAM and ROM
|
2018-08-14 18:49:55 +00:00
|
|
|
VICSCN EQU $1E00 ;Video Screen Memory Area (Unexpanded)
|
|
|
|
CHRROM EQU $8000 ;Character Generator ROM
|
|
|
|
VICCLR EQU $9600 ;COLOR RAM (UNEXPANDED)
|
2018-01-28 18:30:49 +00:00
|
|
|
|
2018-08-19 22:24:02 +00:00
|
|
|
;Machine Language Basic Stub
|
|
|
|
ORG $1001 ;Start of Basic Program
|
|
|
|
BASIC: DC $0C, $10 ;Pointer to Next Line
|
|
|
|
DC $00, $00 ;Line Number (0)
|
|
|
|
DC $9E ;SYS
|
|
|
|
DC $20 ;' '
|
|
|
|
DC $34,$31,$31,$30 ;"4110"
|
|
|
|
DC $00 ;End of Line Marker
|
|
|
|
DC $00, $00 ;End of Basic Program
|
2018-01-28 18:30:49 +00:00
|
|
|
|
2018-08-14 18:49:55 +00:00
|
|
|
INCLUDE "../include/vic.a02" ;Include VIC 20 Common Code
|