2014-04-11 22:44:21 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2014-05-15 22:25:56 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// SVC structures
|
|
|
|
|
2014-05-16 00:17:30 +00:00
|
|
|
struct MemoryInfo {
|
|
|
|
u32 base_address;
|
|
|
|
u32 size;
|
|
|
|
u32 permission;
|
|
|
|
u32 state;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
|
2014-05-15 22:25:56 +00:00
|
|
|
struct ThreadContext {
|
|
|
|
u32 cpu_registers[13];
|
|
|
|
u32 sp;
|
|
|
|
u32 lr;
|
|
|
|
u32 pc;
|
|
|
|
u32 cpsr;
|
|
|
|
u32 fpu_registers[32];
|
|
|
|
u32 fpscr;
|
|
|
|
u32 fpexc;
|
|
|
|
};
|
|
|
|
|
2014-04-11 22:44:21 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace Syscall
|
|
|
|
|
|
|
|
namespace Syscall {
|
|
|
|
|
|
|
|
typedef u32 Handle;
|
|
|
|
typedef s32 Result;
|
|
|
|
|
|
|
|
void Register();
|
|
|
|
|
|
|
|
} // namespace
|