Skip to content
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

introduction/Values.md #94

Open
baosj0 opened this issue Sep 20, 2023 · 0 comments
Open

introduction/Values.md #94

baosj0 opened this issue Sep 20, 2023 · 0 comments

Comments

@baosj0
Copy link

baosj0 commented Sep 20, 2023

Memory locations
You can read/write from/to a memory location by using one of the following expressions:

[addr] read a DWORD/QWORD from addr.
n:[addr] read n bytes from addr.
seg:[addr] read a DWORD/QWORD from a segment at addr.
byte:[addr] read a BYTE from addr.
word:[addr] read a WORD from addr.
dword:[addr] read a DWORD from addr.
qword:[addr] read a QWORD from addr (x64 only).
n is the amount of bytes to read, this can be anything smaller than 4 on x32 and smaller than 8 on x64 when specified, otherwise there will be an error.
seg can be gs, es, cs, fs, ds, ss. Only fs and gs have an effect.

smaller than or equal to

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant