The fill command writes a hexadecimal pattern or string to a block of memory.
fill from to {val|-s str}-where:
|
|
|
|
|
|
|
|
For example, to clear an area of memory from 0xa0020000 to 0xa0021000, enter:
PMON> fill a0020000 a0021000 0To fill an area of memory from 0xa0020000 to 0xa00210000 with the string of values 0x41, 0x42, 0x43, 0x44, and 0x45, enter:
PMON> fill a0020000 a00210000 41 42 43 44 45To fill an area of memory from 0xa0020000 to 0xa00210000 with the ASCII string "hello world," enter:
PMON> fill a0020000 a0021000 -s "hello world"
Navigation: Document Home | Document Contents | Document Index