ida_add_pseudocode_comment
Add comments to specific addresses in decompiled pseudocode to enhance understanding and documentation of analyzed functions.
Instructions
Add a comment to a specific address in the function's decompiled pseudocode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
comment | Yes | ||
function_name | Yes | ||
is_repeatable | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"title": "Address",
"type": "string"
},
"comment": {
"title": "Comment",
"type": "string"
},
"function_name": {
"title": "Function Name",
"type": "string"
},
"is_repeatable": {
"default": false,
"title": "Is Repeatable",
"type": "boolean"
}
},
"required": [
"function_name",
"address",
"comment"
],
"title": "AddPseudocodeComment",
"type": "object"
}