summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index 42f37e29c..c075147c3 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -34,7 +34,11 @@ struct ModuleDef {
34 34
35void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); 35void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
36 36
37void CallSyscall(u32 opcode); 37void CallSVC(u32 opcode);
38
39void EatCycles(u32 cycles);
40
41void ReSchedule(const char *reason);
38 42
39void Init(); 43void Init();
40 44