1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/libsrc/runtime/imul16x16r32.s
Greg King f82a43b98d Fixed the comments to say where the actual Left-Hand Side and Right-Hand Side are put.
A description of positions [left, right] is appropriate more for C code than for Assembly code.  (A description of timing [first argument, second argument] is more appropriate for the way that Assembly code is written.)
2014-05-11 10:43:06 -04:00

46 lines
1005 B
ArmAsm

;
; Ullrich von Bassewitz, 2010-11-03
;
; CC65 runtime: 16x16 => 32 signed multiplication
;
.export imul16x16r32
.import negax, umul16x16r32m, negeax
.include "zeropage.inc"
;---------------------------------------------------------------------------
; 16x16 => 32 signed multiplication routine.
;
; LHS RHS result result also in
; -------------------------------------------------------------
; ax ptr1 ax:sreg
;
; There is probably a faster way to do this.
;
imul16x16r32:
stx tmp1
cpx #0
bpl @L1
jsr negax
@L1: sta ptr3
stx ptr3+1
lda ptr1+1
eor tmp1
sta tmp1
lda ptr1
ldx ptr1+1
bpl @L2
jsr negax
sta ptr1
stx ptr1+1
@L2: jsr umul16x16r32m
ldy tmp1
bpl @L3
jmp negeax
@L3: rts