nvmemp.cpp 751 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "common/assert.h"
  5. #include "common/logging/log.h"
  6. #include "core/hle/ipc_helpers.h"
  7. #include "core/hle/service/nvdrv/nvdrv.h"
  8. #include "core/hle/service/nvdrv/nvmemp.h"
  9. namespace Service {
  10. namespace Nvidia {
  11. NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
  12. static const FunctionInfo functions[] = {
  13. {0, &NVMEMP::Cmd0, "Cmd0"},
  14. {1, &NVMEMP::Cmd1, "Cmd1"},
  15. };
  16. RegisterHandlers(functions);
  17. }
  18. void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
  19. UNIMPLEMENTED();
  20. }
  21. void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
  22. UNIMPLEMENTED();
  23. }
  24. } // namespace Nvidia
  25. } // namespace Service