Multiplication of Signed Numbers.Algorithm:when operand is a byte : AX = AL * operand.when operand is a word : (DX AX) = AX * operand.
Multiplication of Signed Numbers.
Algorithm:when operand is a byte : AX = AL * operand.
when operand is a word : (DX AX) = AX * operand.
IMUL Reg IMUL Memory
MOV AL, -2 MOV BL, -4 IMUL BL ; AX = 8 RET