summaryrefslogtreecommitdiff
path: root/src/core/hle/hle_syscall.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-10 19:58:28 -0400
committerGravatar bunnei2014-04-10 19:58:28 -0400
commitf68de21ad1cd267029b60ee3767d219c46f5fba0 (patch)
tree47d44cfed0c2bd071c75b03a157e7b8a61d85b0d /src/core/hle/hle_syscall.cpp
parentmissed this file with commit 95e5436f (diff)
downloadyuzu-f68de21ad1cd267029b60ee3767d219c46f5fba0.tar.gz
yuzu-f68de21ad1cd267029b60ee3767d219c46f5fba0.tar.xz
yuzu-f68de21ad1cd267029b60ee3767d219c46f5fba0.zip
added initial modules for setting up SysCall HLE
Diffstat (limited to 'src/core/hle/hle_syscall.cpp')
-rw-r--r--src/core/hle/hle_syscall.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/hle_syscall.cpp b/src/core/hle/hle_syscall.cpp
new file mode 100644
index 000000000..c8a516848
--- /dev/null
+++ b/src/core/hle/hle_syscall.cpp
@@ -0,0 +1,22 @@
1// Copyright 2014 Citra Emulator Project
2// Licensed under GPLv2
3// Refer to the license.txt file included.
4
5#include "core/hle/function_wrappers.h"
6#include "core/hle/hle_syscall.h"
7
8////////////////////////////////////////////////////////////////////////////////////////////////////
9
10
11
12Result SVC_ConnectToPort(void* out, const char* port_name) {
13 NOTICE_LOG(OSHLE, "SVC_ConnectToPort called, port_name: %s", port_name);
14 return 0;
15}
16
17const SysCall SysCallTable[] = {
18 {0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
19};
20
21void Register_SysCalls() {
22}