summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-02-21 17:04:16 -0800
committerbunnei <bunneidev@gmail.com>2022-02-27 10:34:02 -0800
commit18e77a54c383391b7c7411ce48b835bb99a44405 (patch)
tree5659a750e4f1c733ffe4bee188f4e408af2d8743 /src
parent06a21ac229ad89daee333408367425e6069bf062 (diff)
hle: kernel: k_memory_layout: Add GetPhysicalLinearRegion.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/k_memory_layout.h4
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:
return Dereference(FindVirtualLinear(address));
}
+ const KMemoryRegion& GetPhysicalLinearRegion(PAddr address) const {
+ return Dereference(FindPhysicalLinear(address));
+ }
+
const KMemoryRegion* GetPhysicalKernelTraceBufferRegion() const {
return GetPhysicalMemoryRegionTree().FindFirstDerived(KMemoryRegionType_KernelTraceBuffer);
}