1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/runtime/mulax5.s

30 lines
425 B
ArmAsm

;
; Ullrich von Bassewitz, 04.10.2001
;
; CC65 runtime: Multiply the primary register by 5
;
.export mulax5
.importzp ptr1
.proc mulax5
sta ptr1
stx ptr1+1
asl a
rol ptr1+1
asl a
rol ptr1+1
clc
adc ptr1
tay
txa
adc ptr1+1
tax
tya
rts
.endproc