diff options
| -rw-r--r-- | src/core/hle/kernel/k_memory_layout.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_memory_layout.h b/src/core/hle/kernel/k_memory_layout.h index 57ff538cc..bcddb0d62 100644 --- a/src/core/hle/kernel/k_memory_layout.h +++ b/src/core/hle/kernel/k_memory_layout.h | |||
| @@ -173,6 +173,10 @@ public: | |||
| 173 | return Dereference(FindVirtualLinear(address)); | 173 | return Dereference(FindVirtualLinear(address)); |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | const KMemoryRegion& GetPhysicalLinearRegion(PAddr address) const { | ||
| 177 | return Dereference(FindPhysicalLinear(address)); | ||
| 178 | } | ||
| 179 | |||
| 176 | const KMemoryRegion* GetPhysicalKernelTraceBufferRegion() const { | 180 | const KMemoryRegion* GetPhysicalKernelTraceBufferRegion() const { |
| 177 | return GetPhysicalMemoryRegionTree().FindFirstDerived(KMemoryRegionType_KernelTraceBuffer); | 181 | return GetPhysicalMemoryRegionTree().FindFirstDerived(KMemoryRegionType_KernelTraceBuffer); |
| 178 | } | 182 | } |