disassemble
Disassemble binary code at a specified address or function to obtain assembly instructions, opcodes, and metadata for analysis.
Instructions
Disassemble instructions at the given address or function, returning assembly with opcodes and metadata.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of instructions to disassemble (used with address mode) | |
| address | No | Hex address to disassemble at (e.g. "0x08048000") | |
| binary_path | Yes | Absolute path to the binary file | |
| function_name | No | Name of the function to disassemble (e.g. "main") |