summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2016-09-15 20:14:18 -0700
committerGravatar GitHub2016-09-15 20:14:18 -0700
commitf196924dddb68f4e47ab6da36552840f82616b90 (patch)
treebb57f41d9d26c4a75059f28165acaff88cfde652 /src/core/arm/arm_interface.h
parentMerge pull request #2064 from linkmauve/remove-readdir_r (diff)
parentarm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg. (diff)
downloadyuzu-f196924dddb68f4e47ab6da36552840f82616b90.tar.gz
yuzu-f196924dddb68f4e47ab6da36552840f82616b90.tar.xz
yuzu-f196924dddb68f4e47ab6da36552840f82616b90.zip
Merge pull request #2042 from bunnei/dynarmic
Interface ARM CPU JIT (Dynarmic)
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index de5e9c8fa..480c90e66 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -122,15 +122,6 @@ public:
122 virtual void AddTicks(u64 ticks) = 0; 122 virtual void AddTicks(u64 ticks) = 0;
123 123
124 /** 124 /**
125 * Initializes a CPU context for use on this CPU
126 * @param context Thread context to reset
127 * @param stack_top Pointer to the top of the stack
128 * @param entry_point Entry point for execution
129 * @param arg User argument for thread
130 */
131 virtual void ResetContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, u32 arg) = 0;
132
133 /**
134 * Saves the current CPU context 125 * Saves the current CPU context
135 * @param ctx Thread context to save 126 * @param ctx Thread context to save
136 */ 127 */