HLE: Move SVC handlers to the Kernel namespace
This commit is contained in:
parent
ad71e23f23
commit
21188f5683
5 changed files with 209 additions and 281 deletions
|
@ -6,8 +6,7 @@
|
|||
|
||||
#include "common/common_types.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// SVC types
|
||||
namespace Kernel {
|
||||
|
||||
struct MemoryInfo {
|
||||
u32 base_address;
|
||||
|
@ -20,11 +19,6 @@ struct PageInfo {
|
|||
u32 flags;
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace SVC
|
||||
|
||||
namespace SVC {
|
||||
|
||||
/// Values accepted by svcGetSystemInfo's type parameter.
|
||||
enum class SystemInfoType {
|
||||
/**
|
||||
|
@ -56,4 +50,4 @@ enum class SystemInfoMemUsageRegion {
|
|||
|
||||
void CallSVC(u32 immediate);
|
||||
|
||||
} // namespace
|
||||
} // namespace Kernel
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue