data_read_word
Extract a 2-byte WORD value from a specified memory address in IDA Pro, particularly when get_global_variable_at
fails to retrieve the required data.
Instructions
Read the 2 byte value at the specified address as a WORD.
Only use this function if `get_global_variable_at` failed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get 2 bytes value from |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get 2 bytes value from",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "data_read_wordArguments",
"type": "object"
}