nvmemp.cpp 690 B

12345678910111213141516171819202122232425262728
  1. // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "common/assert.h"
  4. #include "common/logging/log.h"
  5. #include "core/hle/service/nvdrv/nvmemp.h"
  6. namespace Service::Nvidia {
  7. NVMEMP::NVMEMP(Core::System& system_) : ServiceFramework{system_, "nvmemp"} {
  8. static const FunctionInfo functions[] = {
  9. {0, &NVMEMP::Open, "Open"},
  10. {1, &NVMEMP::GetAruid, "GetAruid"},
  11. };
  12. RegisterHandlers(functions);
  13. }
  14. NVMEMP::~NVMEMP() = default;
  15. void NVMEMP::Open(HLERequestContext& ctx) {
  16. UNIMPLEMENTED();
  17. }
  18. void NVMEMP::GetAruid(HLERequestContext& ctx) {
  19. UNIMPLEMENTED();
  20. }
  21. } // namespace Service::Nvidia