summaryrefslogtreecommitdiff
path: root/src/core/hle/hle_syscall.cpp
diff options
context:
space:
mode:
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}