mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 07:27:59 -05:00
Updated nvmemp with new service names.
This commit is contained in:
@ -13,17 +13,17 @@ namespace Nvidia {
|
|||||||
|
|
||||||
NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
|
NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, &NVMEMP::Unknown0, "Unknown0"},
|
{0, &NVMEMP::Cmd0, "Cmd0"},
|
||||||
{1, &NVMEMP::Unknown1, "Unknown1"},
|
{1, &NVMEMP::Cmd1, "Cmd1"},
|
||||||
};
|
};
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
}
|
}
|
||||||
|
|
||||||
void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) {
|
void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
|
||||||
UNIMPLEMENTED();
|
UNIMPLEMENTED();
|
||||||
}
|
}
|
||||||
|
|
||||||
void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) {
|
void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
|
||||||
UNIMPLEMENTED();
|
UNIMPLEMENTED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user