98
Symbol Math Instructions Section 3-9
DOUBLE BCD
MULTIPLY
*BL
@*BL
425
Output
Required
SIGNED BINARY
DIVIDE
/
@/
430
Output
Required
DOUBLE
SIGNED BINARY
DIVIDE
/L
@/L
431
Output
Required
UNSIGNED
BINARY DIVIDE
/U
@/U
432
Output
Required
DOUBLE
UNSIGNED
BINARY DIVIDE
/UL
@/UL
433
Output
Required
Instruction
Mnemonic
Code
Symbol/Operand Function Location
Execution
condition
Md: 1st
multiplicand word
Mr: 1st multiplier
word
R: 1st result word
*BL(425)
Md
Mr
R
Multiplies 8-digit (double-word) BCD data and/or constants.
Md + 1 Md
Mr + 1 Mr
R + 1 RR + 3
R + 2
(BCD)
(BCD)
(BCD)
×
Dd: Dividend
word
Dr: Divisor word
R: Result word
/(430)
Dd
Dr
R
Divides 4-digit (single-word) signed hexadecimal data and/or constants.
Dd
Dr
R +1
÷
(Signed binary)
(Signed binary)
(Signed binary)
Remainder Quotient
R
Dd: 1st dividend
word
Dr: 1st divisor
word
R: 1st result word
/L(431)
Dd
Dr
R
Divides 8-digit (double-word) signed hexadecimal data and/or constants.
Dd + 1 Dd
Dr + 1 Dr
R + 1 RR + 3
R + 2
(Signed binary)
(Signed binary)
(Signed binary)
÷
Remainder Quotient
Dd: Dividend
word
Dr: Divisor word
R: Result word
/U(432)
Dd
Dr
R
Divides 4-digit (single-word) unsigned hexadecimal data and/or constants.
Dd
Dr
R +1 R
÷
(Unsigned binary)
(Unsigned binary)
(Unsigned binary)
Remainder Quotient
Dd: 1st dividend
word
Dr: 1st divisor
word
R: 1st result word
/UL(433)
Dd
Dr
R
Divides 8-digit (double-word) unsigned hexadecimal data and/or
constants.
Dd + 1 Dd
Dr + 1 Dr
R + 1 RR + 3
R + 2
(Unsigned binary)
(Unsigned binary)
(Unsigned binary)
÷
Remainder Quotient