diff options
Diffstat (limited to 'Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs')
| -rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs b/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs index 7ca92d4f..7eebedf3 100644 --- a/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs +++ b/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs @@ -31,7 +31,7 @@ namespace Ryujinx.Tests.Cpu ulong _X31 = TestContext.CurrentContext.Random.NextULong(); - AThreadState ThreadState = SingleOpcode(Opcode, X1: Xn, X31: _X31); + CpuThreadState ThreadState = SingleOpcode(Opcode, X1: Xn, X31: _X31); CompareAgainstUnicorn(); } @@ -53,7 +53,7 @@ namespace Ryujinx.Tests.Cpu uint _W31 = TestContext.CurrentContext.Random.NextUInt(); - AThreadState ThreadState = SingleOpcode(Opcode, X1: Wn, X31: _W31); + CpuThreadState ThreadState = SingleOpcode(Opcode, X1: Wn, X31: _W31); CompareAgainstUnicorn(); } @@ -75,7 +75,7 @@ namespace Ryujinx.Tests.Cpu ulong _X31 = TestContext.CurrentContext.Random.NextULong(); - AThreadState ThreadState = SingleOpcode(Opcode, X1: Xn, X31: _X31); + CpuThreadState ThreadState = SingleOpcode(Opcode, X1: Xn, X31: _X31); CompareAgainstUnicorn(); } @@ -97,7 +97,7 @@ namespace Ryujinx.Tests.Cpu uint _W31 = TestContext.CurrentContext.Random.NextUInt(); - AThreadState ThreadState = SingleOpcode(Opcode, X1: Wn, X31: _W31); + CpuThreadState ThreadState = SingleOpcode(Opcode, X1: Wn, X31: _W31); CompareAgainstUnicorn(); } |
