As from a mail received :
start:
MOV AL, 0xF9 (-7)
MOV BL, 0x02 (2)
IMUL BL
It gives the result of 01F2. This answer is the result of unsigned number multiplication (MUL).
It is expected to give the answer of FFF2 (-14).
This is because of a bug in imul implementation which does the sign extension + expansion incorrectly.
As from a mail received :
This is because of a bug in imul implementation which does the sign extension + expansion incorrectly.