summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvmemp.cpp
blob: fc10f6406f1de66daadf505fd0c2ed659abb7025 (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
28
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/assert.h"
#include "common/logging/log.h"
#include "core/hle/service/nvdrv/nvmemp.h"

namespace Service::Nvidia {

NVMEMP::NVMEMP(Core::System& system_) : ServiceFramework{system_, "nvmemp"} {
    static const FunctionInfo functions[] = {
        {0, &NVMEMP::Open, "Open"},
        {1, &NVMEMP::GetAruid, "GetAruid"},
    };
    RegisterHandlers(functions);
}

NVMEMP::~NVMEMP() = default;

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

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

} // namespace Service::Nvidia