ns_s.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. ////////////////////////////////////////////////////////////////////////////////////////////////////
  6. // Namespace NS_S
  7. namespace NS_S {
  8. const Interface::FunctionInfo FunctionTable[] = {
  9. {0x000100C0, nullptr, "LaunchFIRM"},
  10. {0x000200C0, nullptr, "LaunchTitle"},
  11. {0x00030000, nullptr, "TerminateApplication"},
  12. {0x00040040, nullptr, "TerminateProcess"},
  13. {0x000500C0, nullptr, "LaunchApplicationFIRM"},
  14. {0x00060042, nullptr, "SetFIRMParams4A0"},
  15. {0x00070042, nullptr, "CardUpdateInitialize"},
  16. {0x00080000, nullptr, "CardUpdateShutdown"},
  17. {0x000D0140, nullptr, "SetTWLBannerHMAC"},
  18. {0x000E0000, nullptr, "ShutdownAsync"},
  19. {0x00100180, nullptr, "RebootSystem"},
  20. {0x00110100, nullptr, "TerminateTitle"},
  21. {0x001200C0, nullptr, "SetApplicationCpuTimeLimit"},
  22. {0x00150140, nullptr, "LaunchApplication"},
  23. {0x00160000, nullptr, "RebootSystemClean"},
  24. };
  25. ////////////////////////////////////////////////////////////////////////////////////////////////////
  26. // Interface class
  27. Interface::Interface() {
  28. Register(FunctionTable);
  29. }
  30. } // namespace