2014-09-07 23:06:25 +00: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 21:04:05 +00: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 23:06:25 +00: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 19:22:19 +00:00
|
|
|
SCRATCH1 = $1a
|
2018-02-28 20:43:14 +00:00
|
|
|
SCRATCH2 = $1b
|