x64dbg/docs

introduction/Values.md

baosj0 opened this issue · 0 comments

baosj0 commented

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