AppleIIAsm-Collection/source/d2_stdio/T.MIN.SUB.THLINE
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

20 lines
386 B
Plaintext

]X1 EQU WPAR1
]X2 EQU WPAR1+1
]Y1 EQU BPAR1
]F EQU BPAR2
THLINE
LDA ]Y1
LDY ]X1
:LOOP
JSR GBCALC
LDA ]F
STA (GBPSH),Y
LDA ]Y1
INY
CPY ]X2
BNE :LOOP
:EXIT
RTS