mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 07:07:12 +02:00
Add SHRN instruction, and fix ADDV
This commit is contained in:
parent
2e71b0dcb2
commit
c7ecba1651
7 changed files with 125 additions and 30 deletions
|
@ -8,14 +8,14 @@ namespace Ryujinx.OsHle.Services
|
|||
{
|
||||
public static long TimeGetStandardUserSystemClock(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new ISystemClock());
|
||||
MakeObject(Context, new ISystemClock(SystemClockType.Standard));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long TimeGetStandardNetworkSystemClock(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new ISystemClock());
|
||||
MakeObject(Context, new ISystemClock(SystemClockType.Network));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -33,5 +33,13 @@ namespace Ryujinx.OsHle.Services
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long TimeGetStandardLocalSystemClock(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new ISystemClock(SystemClockType.Local));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue