mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 04:50:08 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
29 lines
706 B
C++
29 lines
706 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/assert.h"
|
|
#include "common/logging/log.h"
|
|
#include "core/hle/service/nvdrv/nvmemp.h"
|
|
|
|
namespace Service::Nvidia {
|
|
|
|
NVMEMP::NVMEMP(Core::System& system_) : ServiceFramework{system_, "nvmemp"} {
|
|
static const FunctionInfo functions[] = {
|
|
{0, &NVMEMP::Open, "Open"},
|
|
{1, &NVMEMP::GetAruid, "GetAruid"},
|
|
};
|
|
RegisterHandlers(functions);
|
|
}
|
|
|
|
NVMEMP::~NVMEMP() = default;
|
|
|
|
void NVMEMP::Open(Kernel::HLERequestContext& ctx) {
|
|
UNIMPLEMENTED();
|
|
}
|
|
|
|
void NVMEMP::GetAruid(Kernel::HLERequestContext& ctx) {
|
|
UNIMPLEMENTED();
|
|
}
|
|
|
|
} // namespace Service::Nvidia
|