2018-01-21 14:59:50 -08: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"
|
|
|
|
|
2020-11-26 12:19:08 -08:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
namespace Service::Nvidia {
|
2018-01-21 14:59:50 -08:00
|
|
|
|
|
|
|
class NVMEMP final : public ServiceFramework<NVMEMP> {
|
|
|
|
public:
|
2020-11-26 12:19:08 -08:00
|
|
|
explicit NVMEMP(Core::System& system_);
|
2019-04-04 09:16:56 -07:00
|
|
|
~NVMEMP() override;
|
2018-01-21 14:59:50 -08:00
|
|
|
|
|
|
|
private:
|
2020-06-28 19:01:34 -07:00
|
|
|
void Open(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetAruid(Kernel::HLERequestContext& ctx);
|
2018-01-21 14:59:50 -08:00
|
|
|
};
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
} // namespace Service::Nvidia
|