nvmemp.cpp 692 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::Open, "Open"},
  11. {1, &NVMEMP::GetAruid, "GetAruid"},
  12. };
  13. RegisterHandlers(functions);
  14. }
  15. NVMEMP::~NVMEMP() = default;
  16. void NVMEMP::Open(Kernel::HLERequestContext& ctx) {
  17. UNIMPLEMENTED();
  18. }
  19. void NVMEMP::GetAruid(Kernel::HLERequestContext& ctx) {
  20. UNIMPLEMENTED();
  21. }
  22. } // namespace Service::Nvidia