2014-12-15 06:49:33 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-15 06:49:33 +00:00
|
|
|
// 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"},
|
2015-01-02 00:58:27 +00:00
|
|
|
{0x00020082, nullptr, "LoadCRR"},
|
|
|
|
{0x00030042, nullptr, "UnloadCCR"},
|
|
|
|
{0x000402C2, nullptr, "LoadExeCRO"},
|
|
|
|
{0x000500C2, nullptr, "LoadCROSymbols"},
|
|
|
|
{0x00060042, nullptr, "CRO_Load?"},
|
|
|
|
{0x00070042, nullptr, "LoadCROSymbols"},
|
|
|
|
{0x00080042, nullptr, "Shutdown"},
|
|
|
|
{0x000902C2, nullptr, "LoadExeCRO_New?"},
|
2014-12-15 06:49:33 +00:00
|
|
|
};
|
2014-12-21 19:52:10 +00:00
|
|
|
|
2014-12-15 06:49:33 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
|
|
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|