mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-03 02:37:11 +02:00
Emit CIL directly for more SIMD instructions, add UCVTF (vector, scalar) and UZP2, fix XTN (?)
This commit is contained in:
parent
7c4346685c
commit
7c314eadcf
15 changed files with 674 additions and 1052 deletions
|
@ -1,7 +1,6 @@
|
|||
using ChocolArm64.Memory;
|
||||
using Ryujinx.OsHle.Handles;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Threading;
|
||||
|
||||
namespace Ryujinx.OsHle
|
||||
{
|
||||
|
|
|
@ -28,7 +28,7 @@ namespace Ryujinx.OsHle.Objects.Time
|
|||
{
|
||||
DateTime CurrentTime = DateTime.Now;
|
||||
|
||||
if (ClockType == SystemClockType.Standard ||
|
||||
if (ClockType == SystemClockType.User ||
|
||||
ClockType == SystemClockType.Network)
|
||||
{
|
||||
CurrentTime = CurrentTime.ToUniversalTime();
|
||||
|
|
|
@ -2,7 +2,7 @@ namespace Ryujinx.OsHle.Objects.Time
|
|||
{
|
||||
enum SystemClockType
|
||||
{
|
||||
Standard,
|
||||
User,
|
||||
Network,
|
||||
Local
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ namespace Ryujinx.OsHle.Services
|
|||
{
|
||||
public static long TimeGetStandardUserSystemClock(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new ISystemClock(SystemClockType.Standard));
|
||||
MakeObject(Context, new ISystemClock(SystemClockType.User));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
using ChocolArm64;
|
||||
using ChocolArm64.State;
|
||||
using Ryujinx.OsHle.Handles;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue