diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-12 05:07:49 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-12 05:07:49 +0200 |
commit | 4e900d56f3dd2b5c9871b523689322028123d891 (patch) | |
tree | 2b233263cff7c001506f660373e2364c8e702637 /src/core/mem_map.h | |
parent | Merge pull request #914 from yuriks/bitfield-mask (diff) | |
parent | Core: Properly configure address space when loading a binary (diff) | |
download | yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar.gz yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar.bz2 yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar.lz yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar.xz yuzu-4e900d56f3dd2b5c9871b523689322028123d891.tar.zst yuzu-4e900d56f3dd2b5c9871b523689322028123d891.zip |
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r-- | src/core/mem_map.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index ba50914a8..229ef82c5 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -6,9 +6,14 @@ #include "common/common_types.h" +namespace Kernel { +class VMManager; +} + namespace Memory { void Init(); +void InitLegacyAddressSpace(Kernel::VMManager& address_space); void Shutdown(); /** |