| 326 | |
| 327 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 328 | PVOID MapPhysicalMemory(PVOID64 PhysicalAddress, SIZE_T Size) |
| 329 | { |
| 330 | return MmMapIoSpace(*reinterpret_cast<PHYSICAL_ADDRESS*>(&PhysicalAddress), Size, MmNonCached); |
| 331 | } |
| 332 | |
| 333 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 334 | VOID UnmapPhysicalMemory(PVOID64 MappedPhysicalMemory, SIZE_T Size) |
no outgoing calls
no test coverage detected