2009-11-03 13:40:03 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2010-11-03
|
|
|
|
;
|
2009-11-04 13:45:27 +00:00
|
|
|
; CC65 runtime: 16x16 => 32 unsigned multiplication
|
2009-11-03 13:40:03 +00:00
|
|
|
;
|
|
|
|
|
2009-11-04 18:23:40 +00:00
|
|
|
.export umul16x16r32, umul16x16r32m
|
2009-11-04 19:41:54 +00:00
|
|
|
|
|
|
|
.include "zeropage.inc"
|
2009-11-03 13:40:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------
|
2009-11-04 13:45:27 +00:00
|
|
|
; 16x16 => 32 unsigned multiplication routine.
|
2009-11-03 13:40:03 +00:00
|
|
|
;
|
2010-02-04 22:29:57 +00:00
|
|
|
; routine lhs rhs result result also in
|
|
|
|
; -----------------------------------------------------------------------
|
|
|
|
; umul16x16r32 ptr1 ax ax:sreg ptr1:sreg
|
|
|
|
; umul16x16r32m ptr1 ptr3 ax:sreg ptr1:sreg
|
|
|
|
;
|
|
|
|
; ptr3 is left intact by the routine.
|
2009-11-03 13:40:03 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
umul16x16r32:
|
2009-11-03 17:43:57 +00:00
|
|
|
sta ptr3
|
|
|
|
stx ptr3+1
|
2009-11-04 13:45:27 +00:00
|
|
|
|
|
|
|
umul16x16r32m:
|
2009-11-03 13:40:03 +00:00
|
|
|
lda #0
|
|
|
|
sta sreg+1
|
|
|
|
ldy #16 ; Number of bits
|
|
|
|
|
|
|
|
lsr ptr1+1
|
|
|
|
ror ptr1 ; Get first bit into carry
|
|
|
|
@L0: bcc @L1
|
|
|
|
|
|
|
|
clc
|
|
|
|
adc ptr3
|
|
|
|
pha
|
2009-11-04 13:45:27 +00:00
|
|
|
lda ptr3+1
|
2009-11-03 13:40:03 +00:00
|
|
|
adc sreg+1
|
|
|
|
sta sreg+1
|
|
|
|
pla
|
|
|
|
|
|
|
|
@L1: ror sreg+1
|
|
|
|
ror a
|
|
|
|
ror ptr1+1
|
|
|
|
ror ptr1
|
|
|
|
dey
|
|
|
|
bne @L0
|
|
|
|
|
|
|
|
sta sreg ; Save byte 3
|
|
|
|
lda ptr1 ; Load the result
|
|
|
|
ldx ptr1+1
|
|
|
|
rts ; Done
|
|
|
|
|