summaryrefslogtreecommitdiffstats
path: root/src/core/memory_setup.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-30 03:00:17 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-30 03:00:17 +0200
commit8a04c65e20ba1f5c472c026b7a558e1d54324306 (patch)
treec11c0c6a472184f25479b0679748ee71653a2985 /src/core/memory_setup.h
parentMerge pull request #818 from linkmauve/no-trailing-whitespace (diff)
parentMemmap: Remove unused global pointers to memory areas (diff)
downloadyuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar.gz
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar.bz2
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar.lz
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar.xz
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.tar.zst
yuzu-8a04c65e20ba1f5c472c026b7a558e1d54324306.zip
Diffstat (limited to 'src/core/memory_setup.h')
-rw-r--r--src/core/memory_setup.h7
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);
+
}