load_binary
Load binary data into an emulation session, automatically mapping memory, writing data, and optionally setting the program counter for execution.
Instructions
Load binary data into the emulator.
Auto-maps memory, writes data, and optionally sets the program counter.
Args: session_id: The session ID. data: Binary data as hex string or base64. address: Destination address. entry_point: Optional address to set the PC to. encoding: "hex" (default) or "base64".
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| data | Yes | ||
| address | Yes | ||
| entry_point | No | ||
| encoding | No | hex |