mirror of
https://github.com/Michaelangel007/apple2_print_uint16.git
synced 2024-12-28 13:30:55 +00:00
90 lines
2.2 KiB
ArmAsm
90 lines
2.2 KiB
ArmAsm
; Michael Pohoreski
|
|
; https://github.com/Michaelangel007/apple2_print_uint16
|
|
; Optimized from printm
|
|
; Thanks to qkumba for optimizations
|
|
; Thanks to Gids for nudging a zero-page version
|
|
|
|
; F8 ROM Entry Points
|
|
PRHEXZ = $FDE5
|
|
SCRN2 = $F879
|
|
|
|
ORG $800
|
|
|
|
LDA #$12
|
|
LDX #$34
|
|
JMP PrintUint16
|
|
|
|
; Print unsigned 16-bit integer
|
|
; A=High byte
|
|
; X=Low byte
|
|
; Also see: Applesoft LINPRT @ ED24
|
|
; ======================================================================
|
|
PrintUint16
|
|
STX _temp
|
|
PHA ; Optimized: STA _temp+1
|
|
|
|
LDX #0
|
|
STX _bcd+0
|
|
STX _bcd+1
|
|
STX _bcd+2
|
|
|
|
Dec2BCD
|
|
LDX #16 ; 16 bits
|
|
SED ; "Double Dabble"
|
|
_Dec2BCD ; https://en.wikipedia.org/wiki/Double_dabble
|
|
ASL _temp+0 ; abcd efgh | ijkl mnop |
|
|
; ROL _temp+1 ; C=a bcde fghi | jklm nop0 |
|
|
; ; Bit 7654_3210 | 7654_3210 |
|
|
PLA
|
|
ROL
|
|
PHA
|
|
|
|
LDY #$FD ; $00-$FD=-3 bcd[0] bcd[1] bcd[2] bcd[3]
|
|
_DoubleDabble ; Y=FD Y=FE Y=FF Y=00
|
|
LDA _bcd-$FD,Y
|
|
ADC _bcd-$FD,Y
|
|
STA _bcd-$FD,Y
|
|
INY
|
|
BNE _DoubleDabble
|
|
DEX
|
|
BNE _Dec2BCD
|
|
|
|
PLA ; keep stack
|
|
CLD ; X=0 = output length
|
|
|
|
DecWidth
|
|
LDY #3 ; maximum 6 digits output
|
|
BCD2Chars
|
|
LDA _bcd-1,Y
|
|
JSR HexA ; print 0, 1, or 2 hex digits
|
|
DEY
|
|
BNE BCD2Chars
|
|
|
|
TXA ; Handle special case input = $0000 of no output
|
|
BEQ _HaveLeadingDigit
|
|
|
|
_PrintDone
|
|
RTS
|
|
|
|
|
|
; Converts A to high ASCII digits, prints as they become available
|
|
; @return: A will be bottom nibble in high ASCII
|
|
HexA
|
|
PHA
|
|
JSR SCRN2+2 ; LSR x4 == 0>> 4
|
|
JSR _HexNib
|
|
PLA
|
|
AND #$F
|
|
_HexNib
|
|
BNE _HaveLeadingDigit ; If have leading zero and no output yet ...
|
|
DEX ; ... then skip storing it
|
|
|
|
_HaveLeadingDigit
|
|
INX ; X = flag to specify non-zero leading digit was seen
|
|
BEQ _PrintDone
|
|
JMP PRHEXZ
|
|
|
|
_bcd ds 3 ; 6 chars for printing dec
|
|
_temp db 0
|
|
|