diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-10 19:28:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 19:28:15 +0200 |
commit | 177bdb94df763e4f509989bc09ceb3ecf2aeb8c4 (patch) | |
tree | a047f9a78bae539e1e1f0888b23e7aec394c8c32 /src/core/hle/service/nvdrv | |
parent | Updated nvdrv with more service names. (diff) | |
download | yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.gz yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.bz2 yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.lz yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.xz yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.tar.zst yuzu-177bdb94df763e4f509989bc09ceb3ecf2aeb8c4.zip |
Diffstat (limited to 'src/core/hle/service/nvdrv')
-rw-r--r-- | src/core/hle/service/nvdrv/nvmemp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/nvmemp.cpp b/src/core/hle/service/nvdrv/nvmemp.cpp index 5a13732c7..35d6c0c13 100644 --- a/src/core/hle/service/nvdrv/nvmemp.cpp +++ b/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(); } |