how to use the struct to decode all hexes in the editor? #2418
Unanswered
invisiblestrangler
asked this question in
Get Help
Replies: 1 comment
-
How to select all addresses hex data has requires knowing what is an address and what isn't. I don't understand the logic of the structure printed. Also |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I managed to decode a partial of hex data by doing this:
struct test {
u64 a;
u16 b;
u16 c;
u64 d;
};
test test @ 0x00000000 && 0x00000010;
But I feel like there is a much better way to do it. Documentation is kinda unclear about all of this. So what I need is a way to select all addresses the hex data has instead of manually specifying them.
Beta Was this translation helpful? Give feedback.
All reactions