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
there is one thing i noticed that doesn't make much sens with the LEA instruction :
given the example :
LEA RCX, QWORD PTR DS:[100000000] # "\x48\x8D\x0D\xE7\x0F\x55\xB8"
this would normaly resolve to RCX = 100000000.
on triton it tries to read the qword from the address 100000000 like if it was a mov.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
there is one thing i noticed that doesn't make much sens with the LEA instruction :
given the example :
LEA RCX, QWORD PTR DS:[100000000] # "\x48\x8D\x0D\xE7\x0F\x55\xB8"
this would normaly resolve to RCX = 100000000.
on triton it tries to read the qword from the address 100000000 like if it was a mov.
The text was updated successfully, but these errors were encountered: