- renamed hle_syscall to just syscall
- added service.h as an initial service interface
This commit is contained in:
parent
7ea7585898
commit
02fbd42e7f
7 changed files with 157 additions and 106 deletions
|
@ -5,7 +5,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/hle_syscall.h"
|
||||
#include "core/hle/syscall.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -41,7 +41,7 @@ void RegisterModule(std::string name, int num_functions, const FunctionDef* func
|
|||
}
|
||||
|
||||
void RegisterAllModules() {
|
||||
Register_Syscall();
|
||||
Syscall::Register();
|
||||
}
|
||||
|
||||
void Init() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue