Format: memview [%name] [@count] address
The memview command opens a memory view window for interactively displaying and modifying memory contents. This window starts at memory address address (which can be specified by any expression in the current language). By default, the window will open sized to show 64 bytes on the screen; this can be changed by specifying count. Also, a title can be given to the window by specifying name. For example:
memview %Arguments @128 argv[0] |
opens a memory view window titled "Arguments", sized to show 128 bytes on the screen, beginning with the address of argv[0]. See Chapter 18, "Memory view window".