mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
34 lines
633 B
ArmAsm
34 lines
633 B
ArmAsm
|
;
|
||
|
; Christian Groessler, April 2014
|
||
|
;
|
||
|
; mul20
|
||
|
; multiplies A by 20 and returns result in AX
|
||
|
; uses tmp4
|
||
|
|
||
|
.importzp tmp4
|
||
|
.export mul20,loc_tmp
|
||
|
|
||
|
.proc mul20
|
||
|
|
||
|
ldx #0
|
||
|
stx tmp4
|
||
|
sta loc_tmp
|
||
|
asl a
|
||
|
rol tmp4
|
||
|
asl a
|
||
|
rol tmp4 ; val * 4
|
||
|
adc loc_tmp
|
||
|
bcc L1
|
||
|
inc tmp4 ; val * 5
|
||
|
L1: asl a
|
||
|
rol tmp4 ; val * 10
|
||
|
asl a
|
||
|
rol tmp4 ; val * 20
|
||
|
ldx tmp4
|
||
|
rts
|
||
|
|
||
|
.endproc
|
||
|
|
||
|
.bss
|
||
|
loc_tmp:.res 1
|