Skip to content
Snippets Groups Projects
Commit 3bd041f5 authored by bunnei's avatar bunnei
Browse files

changed some naming/misc cleanups

parent 2a7d7ce5
No related branches found
No related tags found
No related merge requests found
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
namespace HLE { namespace HLE {
static std::vector<HLEModule> g_module_db; static std::vector<ModuleDef> g_module_db;
void RegisterModule(const char *name, int num_functions, const HLEFunction *func_table) { void RegisterModule(std::string name, int num_functions, const FunctionDef* func_table) {
HLEModule module = {name, num_functions, func_table}; ModuleDef module = {name, num_functions, func_table};
g_module_db.push_back(module); g_module_db.push_back(module);
} }
......
...@@ -9,29 +9,31 @@ ...@@ -9,29 +9,31 @@
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
typedef void (*HLEFunc)(); #define PARAM(n) Core::g_app_core->GetReg(n)
#define RETURN(n) Core::g_app_core->SetReg(0, n)
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace HLE {
struct HLEFunction { typedef void (*Func)();
struct FunctionDef {
u32 id; u32 id;
HLEFunc func; Func func;
const char* name; std::string name;
}; };
struct HLEModule { struct ModuleDef {
const char* name; std::string name;
int num_funcs; int num_funcs;
const HLEFunction* func_table; const FunctionDef* func_table;
}; };
#define PARAM(n) Core::g_app_core->GetReg(n)
#define RETURN(n) Core::g_app_core->SetReg(0, n)
namespace HLE {
void Init(); void Init();
void Shutdown(); void Shutdown();
void RegisterModule(const char *name, int num_functions, const HLEFunction *func_table); void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
} // namespace } // namespace
...@@ -15,10 +15,10 @@ Result SVC_ConnectToPort(void* out, const char* port_name) { ...@@ -15,10 +15,10 @@ Result SVC_ConnectToPort(void* out, const char* port_name) {
return 0; return 0;
} }
const HLEFunction SysCallTable[] = { const HLE::FunctionDef SysCall_Table[] = {
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"}, {0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
}; };
void Register_SysCall() { void Register_SysCall() {
HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCallTable), SysCallTable); HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCall_Table), SysCall_Table);
} }
...@@ -34,7 +34,4 @@ ...@@ -34,7 +34,4 @@
// } // }
//}; //};
void Register_SysCall(); void Register_SysCall();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment