ida_add_assembly_comment
Add custom comments to specific addresses in the IDA database assembly view, enhancing code analysis and documentation for improved reverse engineering workflows.
Instructions
Add a comment at a specific address in the assembly view of the IDA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
comment | Yes | ||
is_repeatable | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"title": "Address",
"type": "string"
},
"comment": {
"title": "Comment",
"type": "string"
},
"is_repeatable": {
"default": false,
"title": "Is Repeatable",
"type": "boolean"
}
},
"required": [
"address",
"comment"
],
"title": "AddAssemblyComment",
"type": "object"
}