diff options
Diffstat (limited to 'src/core/hle/hle_syscall.cpp')
| -rw-r--r-- | src/core/hle/hle_syscall.cpp | 22 |
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 | |||
| 12 | Result 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 | |||
| 17 | const SysCall SysCallTable[] = { | ||
| 18 | {0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"}, | ||
| 19 | }; | ||
| 20 | |||
| 21 | void Register_SysCalls() { | ||
| 22 | } | ||