Line 7... |
Line 7... |
; Purpose: Zip assembly file for running a 32-bit by 32-bit signed
|
; Purpose: Zip assembly file for running a 32-bit by 32-bit signed
|
; multiply. It works by adjusting the sign of the 32x32-bit
|
; multiply. It works by adjusting the sign of the 32x32-bit
|
; unsigned multiply.
|
; unsigned multiply.
|
;
|
;
|
; Creator: Dan Gisselquist, Ph.D.
|
; Creator: Dan Gisselquist, Ph.D.
|
; Gisselquist Tecnology, LLC
|
; Gisselquist Technology, LLC
|
;
|
;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;
|
;
|
; Copyright (C) 2015, Gisselquist Technology, LLC
|
; Copyright (C) 2015, Gisselquist Technology, LLC
|
;
|
;
|
Line 39... |
Line 39... |
; R1 - Second multiplicand
|
; R1 - Second multiplicand
|
; R2 - Comes in as scratch
|
; R2 - Comes in as scratch
|
; R3 - used as scratch internally
|
; R3 - used as scratch internally
|
mpy32s:
|
mpy32s:
|
ADD 2,SP
|
ADD 2,SP
|
|
STO R2,(SP)
|
STO R3,2(SP)
|
STO R3,2(SP)
|
;
|
;
|
CLR R3 ; Keep track of resulting sign in R2
|
CLR R3 ; Keep track of resulting sign in R2
|
TST R0 ; Is R0 negative?
|
TST -1,R0 ; Is R0 negative?
|
XOR.LT #1,R3 ; If so, resulting sign will be negative, and
|
XOR.LT 1,R3 ; If so, resulting sign will be negative, and
|
NEG.NZ R0 ; then we negate R0 (R0 = ABS(R0))
|
NEG.NZ R0 ; then we negate R0 (R0 = ABS(R0))
|
TST R1 ; Is R1 negative?
|
TST -1,R1 ; Is R1 negative?
|
XOR.LT #1,R3 ; If so, result will be opposite sign of before
|
XOR.LT 1,R3 ; If so, result will be opposite sign of before
|
NEG.LT R1 ; Now we get R1=ABS(R1)
|
NEG.LT R1 ; Now we get R1=ABS(R1)
|
|
|
; JSR mpy32u
|
; JSR mpy32u
|
MOV __HERE__+2,R2 ; Do our unsigned multiply
|
MOV __HERE__+2(PC),R2 ; Do our unsigned multiply
|
STO R2,1(SP)
|
|
BRA mpy32u
|
BRA mpy32u
|
;
|
;
|
TST 0,R3 ; Check resulting sign
|
TST -1,R3 ; Check resulting sign
|
BZ ret_mul32s ; If positive, do nothing more
|
BZ ret_mul32s ; If positive, do nothing more
|
NOT R0 ; If negative, negate the result
|
NOT R0 ; If negative, negate the result
|
NOT R1
|
NOT R1
|
ADD $1,R1
|
ADD $1,R1
|
ADD.C $1,R0
|
ADD.C $1,R0
|
ret_mul32s:
|
ret_mul32s:
|
|
LOD (SP),R2
|
LOD 2(SP),R3
|
LOD 2(SP),R3
|
LOD 3(SP),R2
|
|
ADD 2,SP
|
ADD 2,SP
|
JMP R2
|
JMP R2
|
|
|