Write4
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: write4 xxxxxxxx, value
- xxxxxxxx = Memory address to write into
- value = A value or register containing the value that will be written into memory
Use
Writes a 4-byte value into an arbitrary location in memory.
Example
100: leti R100, 000000FF
write4 DEADBEEF, R100 // Writes the value of R100 into 0xDEADBEEF in memory.
ret