ldr_ro.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "common/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/ldr_ro.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace LDR_RO
  9. namespace LDR_RO {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. {0x000100C2, nullptr, "Initialize"},
  12. {0x00020082, nullptr, "LoadCRR"},
  13. {0x00030042, nullptr, "UnloadCCR"},
  14. {0x000402C2, nullptr, "LoadExeCRO"},
  15. {0x000500C2, nullptr, "LoadCROSymbols"},
  16. {0x00060042, nullptr, "CRO_Load?"},
  17. {0x00070042, nullptr, "LoadCROSymbols"},
  18. {0x00080042, nullptr, "Shutdown"},
  19. {0x000902C2, nullptr, "LoadExeCRO_New?"},
  20. };
  21. ////////////////////////////////////////////////////////////////////////////////////////////////////
  22. // Interface class
  23. Interface::Interface() {
  24. Register(FunctionTable);
  25. }
  26. } // namespace