Beispiel #1
0
 public static Pointer PageTableGetPhysicalAddressFromVirtual(Pointer virtualAddress)
 {
     return(PageTable.GetPhysicalAddressFromVirtual(virtualAddress));
 }
Beispiel #2
0
 public static void PageTableMapVirtualAddressToPhysical(uint virtualAddress, uint physicalAddress, bool present = true)
 {
     PageTable.MapVirtualAddressToPhysical(virtualAddress, physicalAddress, present);
 }
Beispiel #3
0
 public static void PageTableEnable()
 {
     PageTable.Enable();
 }
Beispiel #4
0
 public static void PageTableInitialize()
 {
     PageTable.Initialize();
 }
Beispiel #5
0
 public static void PageTableSetup()
 {
     PageTable.Setup();
 }
Beispiel #6
0
 public static IntPtr PageTableGetPhysicalAddressFromVirtual(IntPtr virtualAddress)
 {
     return(PageTable.GetPhysicalAddressFromVirtual(virtualAddress));
 }