diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-21 05:37:07 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-27 08:24:12 +0200 |
commit | 0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc (patch) | |
tree | 3113ce6d149d7adf9ab5c1eb189102869760e55a /src/core/memory_setup.h | |
parent | Merge pull request #826 from lioncash/tables (diff) | |
download | yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar.gz yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar.bz2 yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar.lz yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar.xz yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.tar.zst yuzu-0a60aa75c2b03b8ed6752e5c64462bf86c52fcfc.zip |
Diffstat (limited to 'src/core/memory_setup.h')
-rw-r--r-- | src/core/memory_setup.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/memory_setup.h b/src/core/memory_setup.h index 46263495f..361bfc816 100644 --- a/src/core/memory_setup.h +++ b/src/core/memory_setup.h @@ -6,8 +6,13 @@ #include "common/common_types.h" +#include "core/memory.h" + namespace Memory { +const u32 PAGE_MASK = PAGE_SIZE - 1; +const int PAGE_BITS = 12; + void InitMemoryMap(); /** @@ -26,4 +31,6 @@ void MapMemoryRegion(VAddr base, u32 size, u8* target); */ void MapIoRegion(VAddr base, u32 size); +void UnmapRegion(VAddr base, u32 size); + } |