Skip to main content

md

Dump memory region contents.

Usage

md [-b|-w|-l|-q] address [-c=count]

Options

OptionDescription
-bByte (8-bit, default)
-wWord (16-bit)
-lLong (32-bit)
-qQuad (64-bit)
-c=countNumber of elements to display (default 64)

Notes

  • Displays hexadecimal values and ASCII representation
  • Respects alignment constraints of the access size
  • Supports Ctrl-C to abort

Examples

# Display 64 bytes as bytes
md -b 0x80000000

# Display 16 values as longs
md -l 0x80000000 -c=16