summaryrefslogtreecommitdiff
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorGravatar MerryMage2017-09-24 22:42:42 +0100
committerGravatar MerryMage2017-09-24 22:42:42 +0100
commitc02bbb7030efd072511bd0051a44d9e503016f74 (patch)
treecf830eadae6493ee83b7de8b44c10c89d668b5ca /src/core/memory.h
parentMerge pull request #2921 from jroweboy/batch-fix-2 (diff)
downloadyuzu-c02bbb7030efd072511bd0051a44d9e503016f74.tar.gz
yuzu-c02bbb7030efd072511bd0051a44d9e503016f74.tar.xz
yuzu-c02bbb7030efd072511bd0051a44d9e503016f74.zip
memory: Add GetCurrentPageTable/SetCurrentPageTable
Don't expose Memory::current_page_table as a global.
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index b228a48c2..db5a704d0 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -182,7 +182,8 @@ enum : VAddr {
182}; 182};
183 183
184/// Currently active page table 184/// Currently active page table
185extern PageTable* current_page_table; 185void SetCurrentPageTable(PageTable* page_table);
186PageTable* GetCurrentPageTable();
186 187
187bool IsValidVirtualAddress(const VAddr addr); 188bool IsValidVirtualAddress(const VAddr addr);
188bool IsValidPhysicalAddress(const PAddr addr); 189bool IsValidPhysicalAddress(const PAddr addr);