mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
0fdf581d06
git-svn-id: svn://svn.cc65.org/cc65/trunk@1012 b7a2c559-68d2-44c3-8de9-860c34a00d81
28 lines
251 B
ArmAsm
28 lines
251 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 04.10.2001
|
|
;
|
|
; CC65 runtime: Multiply the primary register
|
|
;
|
|
|
|
.export mulax3
|
|
.importzp ptr1
|
|
|
|
.proc mulax3
|
|
|
|
sta ptr1
|
|
stx ptr1+1
|
|
asl a
|
|
rol ptr1+1
|
|
clc
|
|
adc ptr1
|
|
pha
|
|
txa
|
|
adc ptr1+1
|
|
tax
|
|
pla
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|