summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvmemp.cpp
blob: 0e8e21badbd1baffa41a705db013b6a30162e6c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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"

namespace Service::Nvidia {

NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
    static const FunctionInfo functions[] = {
        {0, &NVMEMP::Cmd0, "Cmd0"},
        {1, &NVMEMP::Cmd1, "Cmd1"},
    };
    RegisterHandlers(functions);
}

void NVMEMP::Cmd0(Kernel::HLERequestContext& ctx) {
    UNIMPLEMENTED();
}

void NVMEMP::Cmd1(Kernel::HLERequestContext& ctx) {
    UNIMPLEMENTED();
}

} // namespace Service::Nvidia