| |||
| Home > CMM-style commands supported by the debugger > CMM-style commands listed in alphabetical order > data.dump | |||
This command displays data at a specific address or address
range. By default, the display size is 0x20 bytes
of data unless an address range is specified.
data.dumpexpression [/flag]...
Where:
expressionSpecifies the address or address range. This can
be either an address, an address range, or an expression that evaluates
to an address. You can use -- to specify an address
range and ++ to specify an offset from an address.
flagSpecifies additional flags:
byteFormats the data as 1 byte
wordFormats the data as 2 bytes
longFormats the data as 4 bytes
quadFormats the data as 8 bytes
widthSpecifies the number of columns
nohexSuppresses the hexadecimal output
noasciiSuppresses the ASCII output
leFormats the data as little endian
beFormats the data big endian.
If no endianness is specified then the debugger looks for information at the start address of the loaded image otherwise little endian is used.