mirror of
https://github.com/blondie7575/WeeGUI.git
synced 2024-12-14 06:31:06 +00:00
4e1843706e
- Code cleanup - Added pretty window rendering
24 lines
391 B
ArmAsm
24 lines
391 B
ArmAsm
;
|
|
; 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
|
|
|
|
INVERSE = $32
|
|
BASL = $28
|
|
BASH = $29
|
|
|
|
|
|
; Zero page locations we use (unused by Monitor, Applesoft, or ProDOS)
|
|
PARAM0 = $06
|
|
PARAM1 = $07
|
|
PARAM2 = $08
|
|
PARAM3 = $09
|
|
SCRATCH0 = $19
|
|
SCRATCH1 = $1A
|