From 7e3d746b06d68a7fbadf5b94ef62cad38482c000 Mon Sep 17 00:00:00 2001 From: mailwl Date: Tue, 5 Jun 2018 12:19:29 +0300 Subject: Service/MM: add service and stub some functions --- src/core/hle/service/mm/mm_u.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/core/hle/service/mm/mm_u.h (limited to 'src/core/hle/service/mm/mm_u.h') diff --git a/src/core/hle/service/mm/mm_u.h b/src/core/hle/service/mm/mm_u.h new file mode 100644 index 000000000..de3f3a311 --- /dev/null +++ b/src/core/hle/service/mm/mm_u.h @@ -0,0 +1,29 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include +#include "core/hle/kernel/kernel.h" +#include "core/hle/service/service.h" + +namespace Service::MM { + +class MM_U final : public ServiceFramework { +public: + MM_U(); + ~MM_U() = default; + +private: + void Initialize(Kernel::HLERequestContext& ctx); + void SetAndWait(Kernel::HLERequestContext& ctx); + void Get(Kernel::HLERequestContext& ctx); + + u32 value; +}; + +/// Registers all MM services with the specified service manager. +void InstallInterfaces(SM::ServiceManager& service_manager); + +} // namespace Service::MM -- cgit v1.2.3