AppleIIAsm-Collection/source/d2_stdio/T.MIN.SUB.DPRINT
nathanriggs 9f35f32f67 Revision 0.5.0
- massive overhaul of architecture
- first round of optimizations
- first draft of the technical manual for the entire library
- reorganization of directory structure
2019-09-27 16:57:34 -04:00

12 lines
203 B
Plaintext

]ADDR1 EQU WPAR1
DPRINT
LDY #$00
:LOOP
LDA (]ADDR1),Y
BEQ :EXIT
JSR COUT1
INY
BNE :LOOP
:EXIT
RTS