aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/syscall.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-20 18:28:38 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-20 18:28:38 -0400
commit143bba20453036f0a4bcc74dad10d99605a84732 (patch)
treee4ed8a6f74eb6533625b3196e23056a5fc529c4f /src/core/hle/syscall.h
parentf654a03f1f23bea8fe5bf7194614ce6e947d0c5c (diff)
renamed "syscall" module to "svc" (more accurate naming)
Diffstat (limited to 'src/core/hle/syscall.h')
-rw-r--r--src/core/hle/syscall.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/core/hle/syscall.h b/src/core/hle/syscall.h
deleted file mode 100644
index 3da349ed..00000000
--- a/src/core/hle/syscall.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "common/common_types.h"
-
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// SVC types
-
-struct MemoryInfo {
- u32 base_address;
- u32 size;
- u32 permission;
- u32 state;
-};
-
-struct PageInfo {
- u32 flags;
-};
-
-struct ThreadContext {
- u32 cpu_registers[13];
- u32 sp;
- u32 lr;
- u32 pc;
- u32 cpsr;
- u32 fpu_registers[32];
- u32 fpscr;
- u32 fpexc;
-};
-
-enum ResetType {
- RESETTYPE_ONESHOT,
- RESETTYPE_STICKY,
- RESETTYPE_PULSE,
- RESETTYPE_MAX_BIT = (1u << 31),
-};
-
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace Syscall
-
-namespace Syscall {
-
-void Register();
-
-} // namespace