We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As from a mail received :
This is because of a bug in imul implementation which does the sign extension + expansion incorrectly.
The text was updated successfully, but these errors were encountered: