add_watchpoint
Set a memory watchpoint in an emulation session to monitor read or write operations at specific addresses for debugging and analysis.
Instructions
Add a memory watchpoint.
Idempotent -- same address replaces the existing watchpoint.
Args: session_id: The session ID. address: Memory address to watch. size: Number of bytes to watch (default 1). access: Access type -- "r" (read), "w" (write), or "rw" (both). Default "w".
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| address | Yes | ||
| size | No | ||
| access | No | w |