You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: