Merge pull request #2196 from Subv/system_mode

Kernel/Loader: Grab the system mode from the NCCH ExHeader.
This commit is contained in:
Yuri Kunde Schlesner 2016-11-27 17:04:11 -08:00 committed by GitHub
commit 3174bfd50c
10 changed files with 66 additions and 21 deletions

View file

@ -124,13 +124,11 @@ void HandleTable::Clear() {
}
/// Initialize the kernel
void Init() {
void Init(u32 system_mode) {
ConfigMem::Init();
SharedPage::Init();
// TODO(yuriks): The memory type parameter needs to be determined by the ExHeader field instead
// For now it defaults to the one with a largest allocation to the app
Kernel::MemoryInit(2); // Allocates 96MB to the application
Kernel::MemoryInit(system_mode);
Kernel::ResourceLimitsInit();
Kernel::ThreadingInit();

View file

@ -286,8 +286,8 @@ private:
extern HandleTable g_handle_table;
/// Initialize the kernel
void Init();
/// Initialize the kernel with the specified system mode.
void Init(u32 system_mode);
/// Shutdown the kernel
void Shutdown();