2014-05-09 22:11:18 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 03:49:13 -05:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-09 22:11:18 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-06 03:06:12 -04:00
|
|
|
#include "common/common_types.h"
|
2014-05-09 22:11:18 -04:00
|
|
|
|
2014-05-20 18:13:25 -04:00
|
|
|
namespace Kernel {
|
|
|
|
|
2016-11-19 20:40:04 -05:00
|
|
|
/// Initialize the kernel with the specified system mode.
|
|
|
|
void Init(u32 system_mode);
|
2014-06-10 22:43:50 -04:00
|
|
|
|
|
|
|
/// Shutdown the kernel
|
|
|
|
void Shutdown();
|
|
|
|
|
2017-07-21 00:52:50 -04:00
|
|
|
} // namespace Kernel
|