aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ldr_ro.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-05 22:48:58 -0500
committerbunnei <bunneidev@gmail.com>2015-01-05 22:48:58 -0500
commit9eaef4e04ac23640867448eb2ad416c23cda93e3 (patch)
tree65877eaf75b7d6f8c1fd06c6ad7c40cabe40a352 /src/core/hle/service/ldr_ro.cpp
parent9b83f0e15859ed56a8e25f204484d2cd34b74f16 (diff)
parent379b39e58395187fb0806e05bfaa29a9879428c4 (diff)
Merge pull request #413 from purpasmart96/serv_clean
Services: Clean up a few things and add a few function names
Diffstat (limited to 'src/core/hle/service/ldr_ro.cpp')
-rw-r--r--src/core/hle/service/ldr_ro.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/core/hle/service/ldr_ro.cpp b/src/core/hle/service/ldr_ro.cpp
index 9c9e90a40..7d6e2e8e8 100644
--- a/src/core/hle/service/ldr_ro.cpp
+++ b/src/core/hle/service/ldr_ro.cpp
@@ -13,10 +13,14 @@ 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"}
+ {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?"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////