Pointer offset from value #300
opfromthestart
started this conversation in
Troubleshooting
Replies: 1 comment 2 replies
-
|
If you don't want to dereference any of the values, then it's not a pointer. Simply put the base and offset in If you want to dereference, then each added offset will cause the previous result to be dereferenced, except the last offset which always adds to the last value instead of dereference. Both of these are the same behaviour as in CE, if you have any experience with that tool. |
Beta Was this translation helpful? Give feedback.
2 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.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a value I found in memory, and I want to use that value as the base address to another value.
The first is called base, and lets say it has address 0x123456 and value 0x789ABCDEF. When deriving from base, I would like to be able to just put
basefor the base address and put the offset.From this, I am not sure how you would enter pointer chains longer than 1 jump.I figured this one out, the offsets always apply after a dereference.I could not find any documentation on how PINCE does this.
Beta Was this translation helpful? Give feedback.
All reactions