mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 21:47:10 +02:00
Support loading NSO/NRO without a MOD0 header, stub some functions, support more ids on SvcGetInfo
This commit is contained in:
parent
2347c44bbf
commit
b99e808791
15 changed files with 153 additions and 41 deletions
|
@ -110,6 +110,15 @@ namespace Ryujinx.OsHle.Services
|
|||
return 0;
|
||||
}
|
||||
|
||||
public static long NvDrvSetClientPid(ServiceCtx Context)
|
||||
{
|
||||
long Pid = Context.RequestData.ReadInt64();
|
||||
|
||||
Context.ResponseData.Write(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
private static long NvGpuAsIoctlBindChannel(ServiceCtx Context)
|
||||
{
|
||||
long Position = Context.Request.PtrBuff[0].Position;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue