2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-21 14:59:50 -08:00
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
|
2023-02-19 14:42:12 -05:00
|
|
|
void NVMEMP::Open(HLERequestContext& ctx) {
|
2018-01-21 14:59:50 -08:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-19 14:42:12 -05:00
|
|
|
void NVMEMP::GetAruid(HLERequestContext& ctx) {
|
2018-01-21 14:59:50 -08:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Nvidia
|