This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/binw/fill.dbg

13 lines
238 B
Plaintext

* Syntax: fill <address> <value> <length>
*
* Synopsis: fill a region of memory with a value
*
* Example: fill es:0 ff 100
*
do dbg$fill=<3>
modify/byte <1>,,
while (dbg$fill!=0) {
modify/byte ,<2>,,;
/--dbg$fill
}