mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-23 15:02:02 +00:00
Fix InitializeOld & add FinalizeOld, SetAndWaitOld, GetOld on mm:u (#521)
* Fix mm:u * Align some missing * Fix some uncorrect code
This commit is contained in:
parent
fb1d9493a3
commit
5b4382f459
1 changed files with 53 additions and 4 deletions
|
@ -14,7 +14,10 @@ namespace Ryujinx.HLE.HOS.Services.Mm
|
||||||
{
|
{
|
||||||
_commands = new Dictionary<int, ServiceProcessRequest>()
|
_commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 1, InitializeOld },
|
{ 0, InitializeOld },
|
||||||
|
{ 1, FinalizeOld },
|
||||||
|
{ 2, SetAndWaitOld },
|
||||||
|
{ 3, GetOld },
|
||||||
{ 4, Initialize },
|
{ 4, Initialize },
|
||||||
{ 5, Finalize },
|
{ 5, Finalize },
|
||||||
{ 6, SetAndWait },
|
{ 6, SetAndWait },
|
||||||
|
@ -29,11 +32,47 @@ namespace Ryujinx.HLE.HOS.Services.Mm
|
||||||
int unknown1 = context.RequestData.ReadInt32();
|
int unknown1 = context.RequestData.ReadInt32();
|
||||||
int unknown2 = context.RequestData.ReadInt32();
|
int unknown2 = context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
||||||
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// FinalizeOld(u32)
|
||||||
|
public long FinalizeOld(ServiceCtx context)
|
||||||
|
{
|
||||||
|
context.Device.Gpu.UninitializeVideoDecoder();
|
||||||
|
|
||||||
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetAndWaitOld(u32, u32, u32)
|
||||||
|
public long SetAndWaitOld(ServiceCtx context)
|
||||||
|
{
|
||||||
|
int unknown0 = context.RequestData.ReadInt32();
|
||||||
|
int unknown1 = context.RequestData.ReadInt32();
|
||||||
|
int unknown2 = context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
||||||
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetOld(u32) -> u32
|
||||||
|
public long GetOld(ServiceCtx context)
|
||||||
|
{
|
||||||
|
int unknown0 = context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0}");
|
||||||
|
|
||||||
|
context.ResponseData.Write(0);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialize()
|
||||||
public long Initialize(ServiceCtx context)
|
public long Initialize(ServiceCtx context)
|
||||||
{
|
{
|
||||||
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
||||||
|
@ -41,6 +80,7 @@ namespace Ryujinx.HLE.HOS.Services.Mm
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Finalize(u32)
|
||||||
public long Finalize(ServiceCtx context)
|
public long Finalize(ServiceCtx context)
|
||||||
{
|
{
|
||||||
context.Device.Gpu.UninitializeVideoDecoder();
|
context.Device.Gpu.UninitializeVideoDecoder();
|
||||||
|
@ -50,18 +90,27 @@ namespace Ryujinx.HLE.HOS.Services.Mm
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetAndWait(u32, u32, u32)
|
||||||
public long SetAndWait(ServiceCtx context)
|
public long SetAndWait(ServiceCtx context)
|
||||||
{
|
{
|
||||||
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
int unknown0 = context.RequestData.ReadInt32();
|
||||||
|
int unknown1 = context.RequestData.ReadInt32();
|
||||||
|
int unknown2 = context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
||||||
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get(u32) -> u32
|
||||||
public long Get(ServiceCtx context)
|
public long Get(ServiceCtx context)
|
||||||
{
|
{
|
||||||
context.ResponseData.Write(0);
|
int unknown0 = context.RequestData.ReadInt32();
|
||||||
|
|
||||||
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0}");
|
||||||
|
|
||||||
|
context.ResponseData.Write(0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue