2018-01-21 22:59:50 +00: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-20 01:41:44 +00:00
|
|
|
namespace Service::Nvidia {
|
2018-01-21 22:59:50 +00:00
|
|
|
|
|
|
|
NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
|
|
|
|
static const FunctionInfo functions[] = {
|
2018-04-10 17:28:15 +00:00
|
|
|
{0, &NVMEMP::Cmd0, "Cmd0"},
|
|
|
|
{1, &NVMEMP::Cmd1, "Cmd1"},
|
2018-01-21 22:59:50 +00:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
2018-04-10 17:28:15 +00:00
|
|
|
void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
|
2018-01-21 22:59:50 +00:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2018-04-10 17:28:15 +00:00
|
|
|
void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
|
2018-01-21 22:59:50 +00:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Nvidia
|