diff options
Diffstat (limited to 'src/core/hle/hle.h')
| -rw-r--r-- | src/core/hle/hle.h | 6 |
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 | ||
| 35 | void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); | 35 | void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); |
| 36 | 36 | ||
| 37 | void CallSyscall(u32 opcode); | 37 | void CallSVC(u32 opcode); |
| 38 | |||
| 39 | void EatCycles(u32 cycles); | ||
| 40 | |||
| 41 | void ReSchedule(const char *reason); | ||
| 38 | 42 | ||
| 39 | void Init(); | 43 | void Init(); |
| 40 | 44 | ||