This commit is contained in:
HorrorTroll 2018-10-18 16:46:02 +07:00
parent fbcca51794
commit 1403594e26

View file

@ -44,6 +44,10 @@ namespace Ryujinx.HLE.HOS.Services.Mm
// SetAndWait(u32, u32, u32)
public long SetAndWait(ServiceCtx Context)
{
int Unknown0 = Context.RequestData.ReadInt32();
int Unknown1 = Context.RequestData.ReadInt32();
int Unknown2 = Context.RequestData.ReadInt32();
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
return 0;
@ -52,10 +56,12 @@ namespace Ryujinx.HLE.HOS.Services.Mm
// Get(u32) -> u32
public long Get(ServiceCtx Context)
{
Context.ResponseData.Write(0);
int Unknown0 = Context.RequestData.ReadInt32();
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
Context.ResponseData.Write(0);
return 0;
}
}