aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-10 23:26:12 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-10 23:26:12 -0400
commit2bde8f28561ea9436d13d990f6b129a0e80a325e (patch)
tree4d5404d320f4c737ccc6fcbed3cc5549513689f1 /src/core/hle/hle.h
parent01bedbf956a261fb339eba6901716510cc8c9ca2 (diff)
base code to call a syscall from ARM11 appcore
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index 35c8a462..e3b8d483 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -30,10 +30,12 @@ struct ModuleDef {
const FunctionDef* func_table;
};
+void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
+
+void CallSyscall(u32 opcode);
+
void Init();
void Shutdown();
-void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
-
} // namespace