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"
|
|
|
|
|
2020-11-26 20:19:08 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
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:
|
2020-11-26 20:19:08 +00:00
|
|
|
explicit NVMEMP(Core::System& system_);
|
2019-04-04 16:16:56 +00:00
|
|
|
~NVMEMP() override;
|
2018-01-21 22:59:50 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-29 02:01:34 +00:00
|
|
|
void Open(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetAruid(Kernel::HLERequestContext& ctx);
|
2018-01-21 22:59:50 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Nvidia
|