diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2018-02-12 22:53:32 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2018-02-12 22:53:32 +0100 |
commit | 6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539 (patch) | |
tree | c4422ff9c0fff43c035551f72ae3e84952d068f6 /src/core/memory.h | |
parent | Merge pull request #179 from gdkchan/audren_stubs (diff) | |
download | yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar.gz yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar.bz2 yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar.lz yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar.xz yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.tar.zst yuzu-6085d32cf5d5ca4f9a5c0dc2f261505ed86c6539.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/memory.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index b2158ca46..f3ace7a98 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -25,10 +25,11 @@ namespace Memory { * Page size used by the ARM architecture. This is the smallest granularity with which memory can * be mapped. */ -const int PAGE_BITS = 12; -const u64 PAGE_SIZE = 1 << PAGE_BITS; -const u64 PAGE_MASK = PAGE_SIZE - 1; -const size_t PAGE_TABLE_NUM_ENTRIES = 1ULL << (36 - PAGE_BITS); +constexpr size_t PAGE_BITS = 12; +constexpr u64 PAGE_SIZE = 1 << PAGE_BITS; +constexpr u64 PAGE_MASK = PAGE_SIZE - 1; +constexpr size_t ADDRESS_SPACE_BITS = 36; +constexpr size_t PAGE_TABLE_NUM_ENTRIES = 1ULL << (ADDRESS_SPACE_BITS - PAGE_BITS); enum class PageType : u8 { /// Page is unmapped and should cause an access error. |