memory_array_mapped_addresses¶
Data associated for address mapping of physical memory arrays.
Platform support¶
Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. Running a query against an unsupported platform will result in the following error: no such table: memory_array_mapped_addresses
Linux
Mac OSX
Table schema¶
Name |
Type |
Description |
---|---|---|
handle |
TEXT |
Handle, or instance number, associated with the structure |
memory_array_handle |
TEXT |
Handle of the memory array associated with this structure |
starting_address |
TEXT |
Physical stating address, in kilobytes, of a range of memory mapped to physical memory array |
ending_address |
TEXT |
Physical ending address of last kilobyte of a range of memory mapped to physical memory array |
partition_width |
INTEGER |
Number of memory devices that form a single row of memory for the address partition of this structure |
Query examples¶
Select all the results for the given table.
SELECT * FROM memory_array_mapped_addresses;