![]() |
LogicalToPhysicalTable |
Header: MacMemory.h |
The GetPhysical function uses a translation table to hold information about a logical address range and its corresponding physical addresses. A translation table is defined by the data type LogicalToPhysicalTable.
struct LogicalToPhysicalTable { MemoryBlock logical; MemoryBlock physical[8]; };
A logical block of memory whose corresponding physical blocks are to be determined.
A physical translation table that identifies the blocks of physical memory corresponding to the logical block identified in the logical field.
The GetPhysical function uses a translation table to hold information about a logical address range and its corresponding physical addresses. A translation table is defined by the data type LogicalToPhysicalTable.