Multiplication
The following opcodes are used for multiplicaction:
- MULI — Multiply Signed Integer
- MULU — Multiply Unsigned Integer
- MULF — Multiply Floating Point
MULI — Multiply Signed Integer
Algorithm L2 = L2 * <signed_imm>
L2 = L2 * <reg_val>
L2 = L2 * <const>
MULU — Multiply Unsigned Integer
Algorithm L3 = L3 * <unsigned_imm>
L3 = L3 * <reg_val>
L3 = L3 * <const>
MULF — Multiply Float value
Algorithm L1 = L1 * <float>
L1 = L1 * <reg_val>
L1 = L1 * <const>