diff options
| author | 2015-08-22 14:01:57 -0700 | |
|---|---|---|
| committer | 2015-08-22 14:01:57 -0700 | |
| commit | 3efb205a68d38fe377b2c27349d91ec4c6a2d390 (patch) | |
| tree | 4326d8394e66fec3831ce6b9851da689e5aa78e8 /src/core/hle/config_mem.cpp | |
| parent | Merge pull request #1056 from lioncash/emitter (diff) | |
| parent | Kernel: Remove unused legacy heap MapBlock_* functions (diff) | |
| download | yuzu-3efb205a68d38fe377b2c27349d91ec4c6a2d390.tar.gz yuzu-3efb205a68d38fe377b2c27349d91ec4c6a2d390.tar.xz yuzu-3efb205a68d38fe377b2c27349d91ec4c6a2d390.zip | |
Merge pull request #1025 from yuriks/heap-management
Kernel: Correct(er) handling of Heap and Linear Heap allocations
Diffstat (limited to 'src/core/hle/config_mem.cpp')
| -rw-r--r-- | src/core/hle/config_mem.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/config_mem.cpp b/src/core/hle/config_mem.cpp index aea936d2d..b1a72dc0c 100644 --- a/src/core/hle/config_mem.cpp +++ b/src/core/hle/config_mem.cpp | |||
| @@ -25,10 +25,6 @@ void Init() { | |||
| 25 | config_mem.sys_core_ver = 0x2; | 25 | config_mem.sys_core_ver = 0x2; |
| 26 | config_mem.unit_info = 0x1; // Bit 0 set for Retail | 26 | config_mem.unit_info = 0x1; // Bit 0 set for Retail |
| 27 | config_mem.prev_firm = 0; | 27 | config_mem.prev_firm = 0; |
| 28 | config_mem.app_mem_type = 0x2; // Default app mem type is 0 | ||
| 29 | config_mem.app_mem_alloc = 0x06000000; // Set to 96MB, since some games use more than the default (64MB) | ||
| 30 | config_mem.base_mem_alloc = 0x01400000; // Default base memory is 20MB | ||
| 31 | config_mem.sys_mem_alloc = Memory::FCRAM_SIZE - (config_mem.app_mem_alloc + config_mem.base_mem_alloc); | ||
| 32 | config_mem.firm_unk = 0; | 28 | config_mem.firm_unk = 0; |
| 33 | config_mem.firm_version_rev = 0; | 29 | config_mem.firm_version_rev = 0; |
| 34 | config_mem.firm_version_min = 0x40; | 30 | config_mem.firm_version_min = 0x40; |
| @@ -36,7 +32,4 @@ void Init() { | |||
| 36 | config_mem.firm_sys_core_ver = 0x2; | 32 | config_mem.firm_sys_core_ver = 0x2; |
| 37 | } | 33 | } |
| 38 | 34 | ||
| 39 | void Shutdown() { | ||
| 40 | } | ||
| 41 | |||
| 42 | } // namespace | 35 | } // namespace |