disassemble_function
Disassemble a function into assembly code by specifying its start address using IDA Pro for reverse engineering.
Instructions
Get assembly code for a function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
start_address | Yes | Address of the function to disassemble |
Input Schema (JSON Schema)
{
"properties": {
"start_address": {
"description": "Address of the function to disassemble",
"title": "Start Address",
"type": "string"
}
},
"required": [
"start_address"
],
"title": "disassemble_functionArguments",
"type": "object"
}