e (Enter)

e addr [list]
 

The e command enters byte values into memory at a specified address. You can specify the new values on the command line or let the debugger prompt you for values.

addr
Specifies the address of the first byte to be entered.
list
Specifies the byte values used for replacement. These values are inserted automatically. If an error occurs when you are using the list form of the command, no byte values are changed.

If the debugger prompts you, it displays the address and its contents and then waits for you to perform one of the following actions:

The following example prompts you to change the value EB at CS:100:

eCS:100
04BA:0100 EB.

To step through the subsequent bytes without changing values, press the SPACEBAR. In the following example, the SPACEBAR is pressed three times:

04BA:0100 EB.41  10. 00. BC.

To return to a value at a previous address, type a hyphen, as shown in the following example:

04BA:0100  EB.41    10. 00. BC.-
04BA:0102  00.-
04BA:0101  10.

This example returns to the address CS:101.