Browse Source
Updated nvmemp with new service names.
pull/15/merge
Hexagon12
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
src/core/hle/service/nvdrv/nvmemp.cpp
|
|
|
@ -13,17 +13,17 @@ namespace Nvidia { |
|
|
|
|
|
|
|
NVMEMP::NVMEMP() : ServiceFramework("nvmemp") { |
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, &NVMEMP::Unknown0, "Unknown0"}, |
|
|
|
{1, &NVMEMP::Unknown1, "Unknown1"}, |
|
|
|
{0, &NVMEMP::Cmd0, "Cmd0"}, |
|
|
|
{1, &NVMEMP::Cmd1, "Cmd1"}, |
|
|
|
}; |
|
|
|
RegisterHandlers(functions); |
|
|
|
} |
|
|
|
|
|
|
|
void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) { |
|
|
|
void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) { |
|
|
|
UNIMPLEMENTED(); |
|
|
|
} |
|
|
|
|
|
|
|
void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) { |
|
|
|
void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) { |
|
|
|
UNIMPLEMENTED(); |
|
|
|
} |
|
|
|
|
|
|
|
|