using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.Logging; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Mm { class IRequest : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IRequest() { m_Commands = new Dictionary() { { 4, Initialize }, { 6, SetAndWait }, { 7, Get } }; } public long Initialize(ServiceCtx Context) { Context.Device.Log.PrintStub(LogClass.ServiceMm, "Stubbed."); return 0; } public long SetAndWait(ServiceCtx Context) { Context.Device.Log.PrintStub(LogClass.ServiceMm, "Stubbed."); return 0; } public long Get(ServiceCtx Context) { Context.ResponseData.Write(0); Context.Device.Log.PrintStub(LogClass.ServiceMm, "Stubbed."); return 0; } } }