summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-07-29 17:08:00 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 06:03:46 +0200
commit69c3021a8d203dbbea9673977535f1eb75b274a1 (patch)
tree7fce1fe7dce9f94062361832d1f1a1378a66e4af /src/core/hle/kernel/memory.h
parentMemory: Move address type conversion routines to memory.cpp/h (diff)
downloadyuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar.gz
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar.bz2
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar.lz
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar.xz
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.tar.zst
yuzu-69c3021a8d203dbbea9673977535f1eb75b274a1.zip
Diffstat (limited to 'src/core/hle/kernel/memory.h')
-rw-r--r--src/core/hle/kernel/memory.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/core/hle/kernel/memory.h b/src/core/hle/kernel/memory.h
new file mode 100644
index 000000000..cba8a0714
--- /dev/null
+++ b/src/core/hle/kernel/memory.h
@@ -0,0 +1,35 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace Kernel {
+class VMManager;
+}
+
+namespace Memory {
+
+void Init();
+void InitLegacyAddressSpace(Kernel::VMManager& address_space);
+void Shutdown();
+
+/**
+ * Maps a block of memory on the heap
+ * @param size Size of block in bytes
+ * @param operation Memory map operation type
+ * @param permissions Memory allocation permissions
+ */
+u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
+
+/**
+ * Maps a block of memory on the GSP heap
+ * @param size Size of block in bytes
+ * @param operation Memory map operation type
+ * @param permissions Control memory permissions
+ */
+u32 MapBlock_HeapLinear(u32 size, u32 operation, u32 permissions);
+
+} // namespace