ns_s.cpp 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/ns_s.h"
  5. namespace Service {
  6. namespace NS {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. {0x000100C0, nullptr, "LaunchFIRM"},
  9. {0x000200C0, nullptr, "LaunchTitle"},
  10. {0x00030000, nullptr, "TerminateApplication"},
  11. {0x00040040, nullptr, "TerminateProcess"},
  12. {0x000500C0, nullptr, "LaunchApplicationFIRM"},
  13. {0x00060042, nullptr, "SetFIRMParams4A0"},
  14. {0x00070042, nullptr, "CardUpdateInitialize"},
  15. {0x00080000, nullptr, "CardUpdateShutdown"},
  16. {0x000D0140, nullptr, "SetTWLBannerHMAC"},
  17. {0x000E0000, nullptr, "ShutdownAsync"},
  18. {0x00100180, nullptr, "RebootSystem"},
  19. {0x00110100, nullptr, "TerminateTitle"},
  20. {0x001200C0, nullptr, "SetApplicationCpuTimeLimit"},
  21. {0x00150140, nullptr, "LaunchApplication"},
  22. {0x00160000, nullptr, "RebootSystemClean"},
  23. };
  24. NS_S::NS_S() {
  25. Register(FunctionTable);
  26. }
  27. } // namespace NS
  28. } // namespace Service