aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
blob: 6780b52c443b29dea4c81a1ffd4a04bb15919b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// 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"

////////////////////////////////////////////////////////////////////////////////////////////////////

typedef void (*HLEFunc)();
typedef void (*SysCallFunc)();

struct HLEFunction {
	u32                 id;
	HLEFunc             func;
	const char*         name;
	u32                 flags;
};

struct HLEModule {
	const char*         name;
	int                 num_funcs;
	const HLEFunction*  func_table;
};

struct SysCall {
    u8                  id;
	SysCallFunc         func;
    const char*         name;
};

#define PARAM(n)        Core::g_app_core->GetReg(n)
#define RETURN(n)       Core::g_app_core->SetReg(0, n)