1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 06:25:17 +00:00
Files
cc65/libsrc/runtime/mulax5.s
2018-05-22 19:10:07 +02:00

31 lines
488 B
ArmAsm

;
; Ullrich von Bassewitz, 04.10.2001
;
; CC65 runtime: Multiply the primary register by 5
;
; Don't touch the Y-register here, the optimizer relies on it!
.export mulax5
.importzp ptr1
.proc mulax5
sta ptr1
stx ptr1+1
asl a
rol ptr1+1
asl a
rol ptr1+1
clc
adc ptr1
pha
txa
adc ptr1+1
tax
pla
rts
.endproc