Write1
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: write1 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 1-byte value into an arbitrary location in memory.
Example
100: leti R100, 000000FF
write1 DEADBEEF, R100 // Writes the value of R100 into 0xDEADBEEF in memory.
ret