Kernel: add KernelSystem class

This commit is contained in:
Weiyi Wang 2018-10-11 14:49:52 -04:00
parent 1de63f9b16
commit f446fd1fe5
4 changed files with 29 additions and 9 deletions

View file

@ -8,10 +8,10 @@
namespace Kernel {
/// Initialize the kernel with the specified system mode.
void Init(u32 system_mode);
/// Shutdown the kernel
void Shutdown();
class KernelSystem {
public:
explicit KernelSystem(u32 system_mode);
~KernelSystem();
};
} // namespace Kernel