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
Hi,
Opcode 0F BF (MOVSX) should have a 16-bit register as a source operand, but it currently displays as a 32-bit register.
4D0FBFE4 MOVSX R12,R12D
450FBFE4 MOVSX R12D,R12D
0FBFE4 MOVSX ESP,ESP
The text was updated successfully, but these errors were encountered:
Fix MOVSX #8
81c1a8b
MOVSX is now fixed. Thank you for reporting the issue.
Sorry, something went wrong.
No branches or pull requests
Hi,
Opcode 0F BF (MOVSX) should have a 16-bit register as a source operand, but it currently displays as a 32-bit register.
4D0FBFE4 MOVSX R12,R12D
(should be R12W)450FBFE4 MOVSX R12D,R12D
(should be R12W)0FBFE4 MOVSX ESP,ESP
(should be SP)The text was updated successfully, but these errors were encountered: