From 219f63ff4ebb739f349ca3ddd6c11e5068bcf0f1 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 21 Dec 2022 20:05:58 -0300 Subject: Fix CPU FCVTN instruction implementation (slow path) (#4159) * Fix CPU FCVTN instruction implementation (slow path) * PPTC version bump --- Ryujinx.Tests/Cpu/CpuTestSimd.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Ryujinx.Tests/Cpu') diff --git a/Ryujinx.Tests/Cpu/CpuTestSimd.cs b/Ryujinx.Tests/Cpu/CpuTestSimd.cs index be3db0e7..04110ec3 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimd.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimd.cs @@ -2176,8 +2176,8 @@ namespace Ryujinx.Tests.Cpu opcodes |= ((rn & 31) << 5) | ((rd & 31) << 0); opcodes |= ((q & 1) << 30); - V128 v0 = MakeVectorE0E1(z, z); - V128 v1 = MakeVectorE0E1(a, a); + V128 v0 = MakeVectorE0E1(z, a); + V128 v1 = MakeVectorE0E1(a, z); int rnd = (int)TestContext.CurrentContext.Random.NextUInt(); @@ -2202,8 +2202,8 @@ namespace Ryujinx.Tests.Cpu opcodes |= ((rn & 31) << 5) | ((rd & 31) << 0); opcodes |= ((q & 1) << 30); - V128 v0 = MakeVectorE0E1(z, z); - V128 v1 = MakeVectorE0E1(a, a); + V128 v0 = MakeVectorE0E1(z, a); + V128 v1 = MakeVectorE0E1(a, z); SingleOpcode(opcodes, v0: v0, v1: v1); -- cgit v1.2.3