Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom Debugger Guide - use the modify command to change memory at an address to the values http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Use the Modify command to change memory at an address to the values
specified by the list of expressions.


     MOdify [/Byte|/Pointer|/Word|/Dword|/IOByte|/IOWord|/IODword]
<address>[,<expr>[...]]

The options for the modify command are:

/Byte /Pointer /Word /Dword
    Control the size of memory to be modified.

/IOByte /IOWord /IODword
    Control the size of the I/O port to be modified.

<address>
    The address to modify.

<expr>
    The values to be placed in memory.

This command changes the 3 bytes at location "foo" to the values 1, 2 and 3:


     modify /byte foo 1,2,3

This command changes the 4 bytes at location "foo" to the value 12345678
hex:


     modify /dword foo 0x12345678

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson