nvmemp.cpp 680 B

1234567891011121314151617181920212223242526272829
  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/service/nvdrv/nvmemp.h"
  7. namespace Service::Nvidia {
  8. NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
  9. static const FunctionInfo functions[] = {
  10. {0, &NVMEMP::Cmd0, "Cmd0"},
  11. {1, &NVMEMP::Cmd1, "Cmd1"},
  12. };
  13. RegisterHandlers(functions);
  14. }
  15. NVMEMP::~NVMEMP() = default;
  16. void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
  17. UNIMPLEMENTED();
  18. }
  19. void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
  20. UNIMPLEMENTED();
  21. }
  22. } // namespace Service::Nvidia