gsp_lcd.cpp 802 B

123456789101112131415161718192021222324252627
  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/gsp_lcd.h"
  5. ////////////////////////////////////////////////////////////////////////////////////////////////////
  6. // Namespace GSP_LCD
  7. namespace GSP_LCD {
  8. const Interface::FunctionInfo FunctionTable[] = {
  9. {0x000F0000, nullptr, "PowerOnAllBacklights"},
  10. {0x00100000, nullptr, "PowerOffAllBacklights"},
  11. {0x00110040, nullptr, "PowerOnBacklight"},
  12. {0x00120040, nullptr, "PowerOffBacklight"},
  13. {0x00130040, nullptr, "SetLedForceOff"}
  14. };
  15. ////////////////////////////////////////////////////////////////////////////////////////////////////
  16. // Interface class
  17. Interface::Interface() {
  18. Register(FunctionTable);
  19. }
  20. } // namespace