citra/src/core/hle/hle.h

40 lines
892 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
#include "core/core.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
2014-04-11 04:15:07 +02:00
#define PARAM(n) Core::g_app_core->GetReg(n)
#define RETURN(n) Core::g_app_core->SetReg(0, n)
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace HLE {
2014-04-11 04:15:07 +02:00
typedef void (*Func)();
struct FunctionDef {
u32 id;
2014-04-11 04:15:07 +02:00
Func func;
std::string name;
};
2014-04-11 04:15:07 +02:00
struct ModuleDef {
std::string name;
int num_funcs;
2014-04-11 04:15:07 +02:00
const FunctionDef* func_table;
};
void Init();
void Shutdown();
2014-04-11 04:15:07 +02:00
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
} // namespace