yuzu/src/core/hle/kernel/kernel.h
Lioncash 26de4bb521 core/memory: Get rid of 3DS leftovers
Removes leftover code from citra that isn't needed.
2018-08-03 11:22:47 -04:00

18 lines
351 B
C++

// Copyright 2014 Citra Emulator Project / PPSSPP Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
namespace Kernel {
/// Initialize the kernel with the specified system mode.
void Init();
/// Shutdown the kernel
void Shutdown();
} // namespace Kernel