2014-09-07 16:06:25 -07:00
|
|
|
;
|
|
|
|
; zeropage.s
|
|
|
|
; Zero page information
|
|
|
|
;
|
|
|
|
; Created by Quinn Dunki on 8/15/14.
|
|
|
|
; Copyright (c) 2014 One Girl, One Laptop Productions. All rights reserved.
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
; Reserved locations
|
|
|
|
|
2014-09-16 14:04:05 -07:00
|
|
|
INVERSE = $32 ; Text output state
|
|
|
|
CH = $24 ; Cursor X pos
|
|
|
|
CV = $25 ; Cursor Y pos
|
|
|
|
BASL = $28 ; Current video memory line
|
|
|
|
BASH = $29 ; Current video memory line
|
2014-09-07 16:06:25 -07:00
|
|
|
|
|
|
|
; Zero page locations we use (unused by Monitor, Applesoft, or ProDOS)
|
|
|
|
PARAM0 = $06
|
|
|
|
PARAM1 = $07
|
|
|
|
PARAM2 = $08
|
|
|
|
PARAM3 = $09
|
|
|
|
SCRATCH0 = $19
|
2014-10-03 12:22:19 -07:00
|
|
|
SCRATCH1 = $1a
|
2018-02-28 15:43:14 -05:00
|
|
|
SCRATCH2 = $1b
|