aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/mem_map.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-09 04:02:32 -0300
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-09 04:02:32 -0300
commit17a8cae0038b82202149bad687823b89074aa696 (patch)
tree02970a9b2368551c4af31e4138db1b6ded6d018c /src/core/mem_map.h
parent28a9e4c1d55c66e99b5cf16fda00dcb75ab27fde (diff)
Memory: Add GetPhysicalPointer helper function
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r--src/core/mem_map.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index 5a08cc10..64de76c3 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -192,4 +192,13 @@ PAddr VirtualToPhysicalAddress(VAddr addr);
*/
VAddr PhysicalToVirtualAddress(PAddr addr);
+/**
+ * Gets a pointer to the memory region beginning at the specified physical address.
+ *
+ * @note This is currently implemented using PhysicalToVirtualAddress().
+ */
+inline u8* GetPhysicalPointer(PAddr address) {
+ return GetPointer(PhysicalToVirtualAddress(address));
+}
+
} // namespace