2018-01-21 14:59:50 -08:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
|
#include "core/hle/service/nvdrv/nvmemp.h"
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::Nvidia {
|
2018-01-21 14:59:50 -08:00
|
|
|
|
2020-11-26 15:19:08 -05:00
|
|
|
NVMEMP::NVMEMP(Core::System& system_) : ServiceFramework{system_, "nvmemp"} {
|
2018-01-21 14:59:50 -08:00
|
|
|
static const FunctionInfo functions[] = {
|
2020-06-29 04:01:34 +02:00
|
|
|
{0, &NVMEMP::Open, "Open"},
|
|
|
|
|
{1, &NVMEMP::GetAruid, "GetAruid"},
|
2018-01-21 14:59:50 -08:00
|
|
|
};
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-10 21:20:52 -04:00
|
|
|
NVMEMP::~NVMEMP() = default;
|
|
|
|
|
|
2020-06-29 04:01:34 +02:00
|
|
|
void NVMEMP::Open(Kernel::HLERequestContext& ctx) {
|
2018-01-21 14:59:50 -08:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-29 04:01:34 +02:00
|
|
|
void NVMEMP::GetAruid(Kernel::HLERequestContext& ctx) {
|
2018-01-21 14:59:50 -08:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Nvidia
|