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,
I tried to use the scripts in this repo to dump PCode, but I can't get the script to compile, I get the following error:
PCodeDumpSF.java:509: error: incompatible types: ghidra.program.model.pcode.HighSymbol cannot be converted to ghidra.program.model.pcode.HighParam HighParam param = proto.getParam(i); ^
I'm assuming this is due to the age of the code. Do you have any suggestions on how to fix this?
Thanks!
The text was updated successfully, but these errors were encountered:
I was able to resolve this with the following changes starting on line 509 inside of exportPrototype():
exportPrototype()
for (int i = 0; i < proto.getNumParams(); i++) { HighSymbol paramSymbol = proto.getParam(i); HighVariable param = paramSymbol.getHighVariable();
Sorry, something went wrong.
No branches or pull requests
Hi,
I tried to use the scripts in this repo to dump PCode, but I can't get the script to compile, I get the following error:
PCodeDumpSF.java:509: error: incompatible types: ghidra.program.model.pcode.HighSymbol cannot be converted to ghidra.program.model.pcode.HighParam
HighParam param = proto.getParam(i);
^
I'm assuming this is due to the age of the code. Do you have any suggestions on how to fix this?
Thanks!
The text was updated successfully, but these errors were encountered: