summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-22 04:30:09 -0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-01-09 03:51:55 -0200
commit7b3452c7303cf348377de6702ddda0307533663c (patch)
treece08ed7d7c42015919e1dd26cb2ec8721a54ec8a /src/core/hle/svc.h
parentd46f6500363024ac58cc23ba706e26d531a6076a (diff)
Move ThreadContext to core/core.h and deal with the fallout
Diffstat (limited to 'src/core/hle/svc.h')
-rw-r--r--src/core/hle/svc.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/hle/svc.h b/src/core/hle/svc.h
index ad780818e..5d020a5ba 100644
--- a/src/core/hle/svc.h
+++ b/src/core/hle/svc.h
@@ -20,21 +20,6 @@ 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;
-
- // These are not part of native ThreadContext, but needed by emu
- u32 reg_15;
- u32 mode;
-};
-
enum ResetType {
RESETTYPE_ONESHOT,
RESETTYPE_STICKY,