mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2024-11-27 12:49:27 +00:00
9b12b6fd9b
- getting ready for major changes for 0.6.0. - be sure to download the 0.5.0 release to ensure proper functionality, as these rountines will not work together in the SRC or BIN folder during the transition - Beginning to significantly alter documentation
15 lines
298 B
NASM
15 lines
298 B
NASM
]Y1 EQU VARTAB
|
|
]X1 EQU VARTAB+1
|
|
]F EQU VARTAB+3
|
|
TXTPUT
|
|
STA ]F
|
|
STY ]Y1
|
|
STX ]X1
|
|
LDA ]Y1
|
|
LDY ]X1
|
|
JSR GBCALC
|
|
LDA ]F
|
|
STA (GBPSH),Y
|
|
:EXIT
|
|
RTS
|