aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/ldr_ro.cpp
blob: 91b1a6fc5a19e0efe17b4ab84a608101e7336728 (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
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include "common/log.h"
#include "core/hle/hle.h"
#include "core/hle/service/ldr_ro.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace LDR_RO

namespace LDR_RO {

const Interface::FunctionInfo FunctionTable[] = {
    {0x000100C2, nullptr,               "Initialize"},
    {0x00020082, nullptr,               "CRR_Load"},
    {0x00030042, nullptr,               "CRR_Unload"},
    {0x000402C2, nullptr,               "CRO_LoadAndFix"},
    {0x000500C2, nullptr,               "CRO_ApplyRelocationPatchesAndLink"}
};
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class

Interface::Interface() {
    Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}

} // namespace