read_memory_physical
Read physical memory bypassing the CPU cache to retrieve actual values on the memory bus. Specify address, length, and access width for a hex dump of memory contents.
Instructions
Read physical memory bypassing the CPU cache.
Reads the actual value on the memory bus, which may differ from what the CPU sees if the data cache has not been flushed.
Args: address: Memory address as hex string (e.g., "0x80000000") length: Number of bytes to read width: Access width in bits — 8, 16, 32, or 64 (default: 32)
Returns: Hex dump of physical memory contents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | ||
| length | Yes | ||
| address | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |