data_read_dword
Retrieve a 4-byte DWORD value from a specified address in IDA Pro when get_global_variable_at
fails, aiding in reverse engineering tasks.
Instructions
Read the 4 byte value at the specified address as a DWORD.
Only use this function if `get_global_variable_at` failed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get 4 bytes value from |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get 4 bytes value from",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "data_read_dwordArguments",
"type": "object"
}