add_breakpoint
Add a breakpoint at a specified address during CPU emulation to pause execution for debugging. Optionally include a condition to trigger the breakpoint only when specific criteria are met.
Instructions
Add a breakpoint at the given address.
Idempotent — adding the same address twice is a no-op.
Args: session_id: The session ID. address: The address to break at. condition: Optional condition expression (e.g. "eax == 42", "rax > 0x1000 and rcx != 0").
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| address | Yes | ||
| condition | No |