mirror of
https://github.com/badvision/lawless-legends.git
synced 2025-01-13 18:30:38 +00:00
Pull out zero page useage into seperate file for inclusion
This commit is contained in:
parent
b496256a87
commit
97529baec3
30
PLASMA/src/plvm02zp.inc
Normal file
30
PLASMA/src/plvm02zp.inc
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
;**********************************************************
|
||||||
|
;*
|
||||||
|
;* VM ZERO PAGE LOCATIONS
|
||||||
|
;*
|
||||||
|
;**********************************************************
|
||||||
|
ESTKSZ = $20
|
||||||
|
ESTK = $C0
|
||||||
|
ESTKL = ESTK
|
||||||
|
ESTKH = ESTK+ESTKSZ/2
|
||||||
|
VMZP = ESTK+ESTKSZ
|
||||||
|
IFP = VMZP
|
||||||
|
IFPL = IFP
|
||||||
|
IFPH = IFP+1
|
||||||
|
IP = IFP+2
|
||||||
|
IPL = IP
|
||||||
|
IPH = IP+1
|
||||||
|
IPY = IP+2
|
||||||
|
TMP = IP+3
|
||||||
|
TMPL = TMP
|
||||||
|
TMPH = TMP+1
|
||||||
|
TMPX = TMP+2
|
||||||
|
NPARMS = TMPL
|
||||||
|
FRMSZ = TMPH
|
||||||
|
DVSIGN = TMPX
|
||||||
|
SRC = $06
|
||||||
|
SRCL = SRC
|
||||||
|
SRCH = SRC+1
|
||||||
|
DST = SRC+2
|
||||||
|
DSTL = DST
|
||||||
|
DSTH = DST+1
|
Loading…
x
Reference in New Issue
Block a user