added initial modules for setting up SysCall HLE
This commit is contained in:
parent
fccbfc208c
commit
f68de21ad1
7 changed files with 862 additions and 0 deletions
22
src/core/hle/hle_syscall.cpp
Normal file
22
src/core/hle/hle_syscall.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/function_wrappers.h"
|
||||
#include "core/hle/hle_syscall.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
Result SVC_ConnectToPort(void* out, const char* port_name) {
|
||||
NOTICE_LOG(OSHLE, "SVC_ConnectToPort called, port_name: %s", port_name);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const SysCall SysCallTable[] = {
|
||||
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
|
||||
};
|
||||
|
||||
void Register_SysCalls() {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue