1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 02:29:32 +00:00
cc65/libsrc/runtime/mulax6.s

31 lines
469 B
ArmAsm
Raw Permalink Normal View History

;
; Piotr Fusik, 24.10.2003
; originally by Ullrich von Bassewitz
;
; CC65 runtime: Multiply the primary register by 6
;
.export mulax6
.importzp ptr1
.proc mulax6
sta ptr1
stx ptr1+1
asl a
rol ptr1+1
clc
adc ptr1
sta ptr1
txa
adc ptr1+1
asl ptr1
rol a
tax
lda ptr1
rts
.endproc