mirror of
https://github.com/mi57730/a2d.git
synced 2025-04-04 21:33:13 +00:00
Date: decimal constants
This commit is contained in:
parent
a65459124c
commit
5e7a83dfc9
@ -744,11 +744,11 @@ L0E16: .byte $00,$00,$00,$00,$00,$00,$00,$00
|
||||
.byte $00,$00,$00,$00,$00,$00,$00,$00
|
||||
|
||||
.proc div_by_10_then_ascii ; A = A / 10, X = remainder, results in ASCII form
|
||||
ldy #$00
|
||||
loop: cmp #$0A ; Y = A / 10
|
||||
ldy #0
|
||||
loop: cmp #10 ; Y = A / 10
|
||||
bcc :+
|
||||
sec
|
||||
sbc #$0A
|
||||
sbc #10
|
||||
iny
|
||||
jmp loop
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user