KMemoryBlock: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Filled in the object members |
||
Line 12: | Line 12: | ||
| 0x0 | | 0x0 | ||
| void* | | void* | ||
| Base address of memory block | | Base address of memory block. | ||
|- | |- | ||
| 0x4 | | 0x4 | ||
| void* | | void* | ||
| | | Block size in pages. | ||
|- | |- | ||
| 0x8 | | 0x8 | ||
| void* | | void* | ||
| Memory block permissions | | Memory block permissions - rwx. | ||
|- | |- | ||
| 0xC | | 0xC | ||
| void* | | void* | ||
| Memory state bitflags | | Memory state bitflags - the lowest byte is the type of memory and the second byte is for specific properties of the block. | ||
|- | |- | ||
| 0x10 | | 0x10 |
Revision as of 23:37, 25 January 2015
Size : 0x14 bytes
Offset | Type | Description |
---|---|---|
0x0 | void* | Base address of memory block. |
0x4 | void* | Block size in pages. |
0x8 | void* | Memory block permissions - rwx. |
0xC | void* | Memory state bitflags - the lowest byte is the type of memory and the second byte is for specific properties of the block. |
0x10 | u32 | Zero |