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
18 lines
352 B
NASM
18 lines
352 B
NASM
]STRLEN EQU VARTAB
|
|
PRNSTR
|
|
STA ADDR1
|
|
STX ADDR1+1
|
|
LDY #0
|
|
LDA (ADDR1),Y
|
|
STA ]STRLEN
|
|
:LP
|
|
INY
|
|
LDA (ADDR1),Y
|
|
JSR COUT1
|
|
CPY ]STRLEN
|
|
BNE :LP
|
|
; LOOP
|
|
LDY #0
|
|
LDA (ADDR1),Y
|
|
RTS
|