diff options
| author | 2014-04-10 19:58:28 -0400 | |
|---|---|---|
| committer | 2014-04-10 19:58:28 -0400 | |
| commit | f68de21ad1cd267029b60ee3767d219c46f5fba0 (patch) | |
| tree | 47d44cfed0c2bd071c75b03a157e7b8a61d85b0d /src/core/hle/hle_syscall.cpp | |
| parent | missed this file with commit 95e5436f (diff) | |
| download | yuzu-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.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 | } | ||