get_disassembly
Retrieve disassembly for a specified address range in IDA Pro, enabling reverse engineering and binary analysis tasks with ease.
Instructions
Get disassembly for an address range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of instructions to disassemble (optional) | |
endAddress | No | End address for disassembly (optional) | |
startAddress | Yes | Start address for disassembly |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of instructions to disassemble (optional)",
"type": "number"
},
"endAddress": {
"description": "End address for disassembly (optional)",
"type": "string"
},
"startAddress": {
"description": "Start address for disassembly",
"type": "string"
}
},
"required": [
"startAddress"
],
"type": "object"
}