2018-01-21 22:59:50 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Nvidia {
|
2018-01-21 22:59:50 +00:00
|
|
|
|
|
|
|
class NVMEMP final : public ServiceFramework<NVMEMP> {
|
|
|
|
public:
|
|
|
|
NVMEMP();
|
2019-04-04 16:16:56 +00:00
|
|
|
~NVMEMP() override;
|
2018-01-21 22:59:50 +00:00
|
|
|
|
|
|
|
private:
|
2018-04-11 11:48:56 +00:00
|
|
|
void Cmd0(Kernel::HLERequestContext& ctx);
|
|
|
|
void Cmd1(Kernel::HLERequestContext& ctx);
|
2018-01-21 22:59:50 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Nvidia
|