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
With the current code in cmd_arm64, when trying to use the arm64 command, I get:
arm64
keystone.keystone.KsError: Invalid mode (KS_ERR_MODE)
The reason for this seems to be a change in keystone-engine (I think).
The offending code is
assemble_keystone(keystone.KS_ARCH_ARM64, keystone.KS_MODE_ARM, inst_list)
I believe it should be
assemble_keystone(keystone.KS_ARCH_ARM64, keystone.KS_MODE_LITTLE_ENDIAN, inst_list)
I'm not sure if this is a keystone issue or an issue with lldbinit.
The text was updated successfully, but these errors were encountered:
From their sample code you are correct :-) Thanks 👍
Sorry, something went wrong.
No branches or pull requests
With the current code in cmd_arm64, when trying to use the
arm64
command, I get:keystone.keystone.KsError: Invalid mode (KS_ERR_MODE)
The reason for this seems to be a change in keystone-engine (I think).
The offending code is
assemble_keystone(keystone.KS_ARCH_ARM64, keystone.KS_MODE_ARM, inst_list)
I believe it should be
assemble_keystone(keystone.KS_ARCH_ARM64, keystone.KS_MODE_LITTLE_ENDIAN, inst_list)
I'm not sure if this is a keystone issue or an issue with lldbinit.
The text was updated successfully, but these errors were encountered: