mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2025-02-19 06:30:43 +00:00
- 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
17 lines
364 B
NASM
17 lines
364 B
NASM
]LEN EQU VARTAB
|
|
]STR EQU ADDR1
|
|
PRNSTR
|
|
STA ]STR
|
|
STX ]STR+1
|
|
LDY #0
|
|
LDA (]STR),Y
|
|
STA ]LEN
|
|
:LP
|
|
INY
|
|
LDA (]STR),Y
|
|
JSR SCOUT1
|
|
CPY ]LEN
|
|
BNE :LP
|
|
LDA ]LEN
|
|
RTS
|