2014-04-12 00:44:21 +02: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-16 00:25:56 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-19 00:12:29 +02:00
|
|
|
// SVC types
|
2014-05-16 00:25:56 +02:00
|
|
|
|
2014-05-16 02:17:30 +02:00
|
|
|
struct MemoryInfo {
|
|
|
|
u32 base_address;
|
|
|
|
u32 size;
|
|
|
|
u32 permission;
|
|
|
|
u32 state;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PageInfo {
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
|
2014-05-16 00:25:56 +02:00
|
|
|
struct ThreadContext {
|
|
|
|
u32 cpu_registers[13];
|
|
|
|
u32 sp;
|
|
|
|
u32 lr;
|
|
|
|
u32 pc;
|
|
|
|
u32 cpsr;
|
|
|
|
u32 fpu_registers[32];
|
|
|
|
u32 fpscr;
|
|
|
|
u32 fpexc;
|
|
|
|
};
|
|
|
|
|
2014-05-19 00:12:29 +02:00
|
|
|
enum ResetType {
|
|
|
|
RESETTYPE_ONESHOT,
|
|
|
|
RESETTYPE_STICKY,
|
|
|
|
RESETTYPE_PULSE,
|
|
|
|
RESETTYPE_MAX_BIT = (1u << 31),
|
|
|
|
};
|
|
|
|
|
2014-04-12 00:44:21 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace Syscall
|
|
|
|
|
|
|
|
namespace Syscall {
|
|
|
|
|
|
|
|
void Register();
|
|
|
|
|
|
|
|
} // namespace
|