AppleIIAsm-Collection/source/disk1_stdio/T.MIN.SUB.XPRINT
nathanriggs c8cac53c5e Rev 0.4 updates
Massive updates that changes the way most subroutines are handled. Major bugfixes, various utilities added, started higher-level libraries.
2019-04-26 18:49:10 -04:00

26 lines
436 B
Plaintext

XPRINT
PLA
STA ADDR1
PLA
STA ADDR1+1
LDY #$01
:LOOP
LDA (ADDR1),Y
BEQ :DONE
JSR COUT1
INY
BNE :LOOP
:DONE
CLC
TYA
ADC ADDR1
STA ADDR1
LDA ADDR1+1
ADC #$00
PHA
LDA ADDR1
PHA
RTS
:EXIT