summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-11 05:26:12 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-11 05:26:12 +0200
commit2bde8f28561ea9436d13d990f6b129a0e80a325e (patch)
tree4d5404d320f4c737ccc6fcbed3cc5549513689f1 /src/core/hle/hle.h
parentupdated logging message (diff)
downloadyuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.gz
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.bz2
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.lz
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.xz
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.zst
yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.zip
Diffstat (limited to '')
-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 35c8a4621..e3b8d483a 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