-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
specific_ref_type
is sometimes 16-bit rather than 32-bit
#52
Comments
Can't we just override |
known issue DF-side that we have an existing solution for (overriding base-type at the field level) |
Reopening this as an issue for the ghidra importer |
sorry, thought this was df-structures 🤦 |
it was, i transferred the issue :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
toady defines this as an enum without a specific base type so the underlying type is 32 bits, but he then does
typedef int16_t Reference;
and usually usesReference
so most of the time these are 16-bit valueswe thus need to generate both a 16-bit and 32-bit version of this enum
The text was updated successfully, but these errors were encountered: