You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
268 B
ArmAsm
30 lines
268 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 04.10.2001
|
||
|
;
|
||
|
; CC65 runtime: Multiply the primary register
|
||
|
;
|
||
|
|
||
|
.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
|
||
|
|
||
|
|