Prev: AACA Up: Map Next: AAE8
AAD7: print CR/LF
Used by the routines at A43A, A69C and AAA0.
AAD7 A9 0D LDA #$0D set [CR]
AAD9 20 47 AB JSR $AB47 print the character
AADC 24 13 BIT $13 test current I/O channel
AADE 10 05 BPL $AAE5 if ?? toggle A, EOR #$FF and return
AAE0 A9 0A LDA #$0A set [LF]
AAE2 20 47 AB JSR $AB47 print the character
This entry point is used by the routine at AB21.
toggle A
AAE5 49 FF EOR #$FF invert A
This entry point is used by the routines at AAA0, AACA and AB21.
AAE7 60 RTS
Prev: AACA Up: Map Next: AAE8