ppsspp_memory_map
Get the memory region map for a PPSSPP session, showing user, kernel, and VRAM ranges. Understand the emulator's memory layout for debugging.
Instructions
PURPOSE: Get the PPSSPP memory region map (user / kernel / VRAM ranges).
USAGE: session_id.
BEHAVIOR: READ-ONLY.
RETURNS: {ranges[], mapping, text}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | Active session ID. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Unified text representation: one line per range, formatted as '0x{ADDR:08X}-0x{END:08X} {TYPE}/{subtype} {NAME}'. | |
| ranges | Yes | Memory ranges from `memory.mapping`. Each entry has 'type' (ram/vram/sram), 'subtype' (primary/mirror), 'name', 'address', and 'size'. | |
| mapping | Yes | Raw `memory.mapping` response. |