emulate
Execute CPU emulation from a specified address with configurable bounds like stop address, instruction count, or timeout to control execution flow.
Instructions
Run CPU emulation.
Must provide stop_address, count, or both to bound execution.
Args: session_id: The session ID. address: Address to begin execution. stop_address: Address to stop at (exclusive). count: Maximum instructions to execute (capped at 100,000). timeout_ms: Timeout in milliseconds (capped at 60,000).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| address | Yes | ||
| stop_address | No | ||
| count | No | ||
| timeout_ms | No |