diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-02-09 02:24:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 02:24:32 +0100 |
commit | ec8d4f3af5d951776ab9d494ca1c5cae7809c08f (patch) | |
tree | d8d4d9deb25bbbea422ea5bc09a63dc31ed8dc1f /Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs | |
parent | b3f0978869c7b621bf1c62ea6a8fc51f1e3a5c24 (diff) |
Replace unicorn bindings with Nuget package (#4378)1.1.611
* Replace unicorn bindings with Nuget package
* Use nameof for ValueSource args
* Remove redundant code from test projects
* Fix wrong values for EmuStart()
Add notes to address this later again
* Improve formatting
* Fix formatting/alignment issues
Diffstat (limited to 'Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs')
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs b/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs index 534dba57..aa6e0c94 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs @@ -1,7 +1,6 @@ #define SimdFmov using ARMeilleure.State; - using NUnit.Framework; namespace Ryujinx.Tests.Cpu @@ -14,7 +13,7 @@ namespace Ryujinx.Tests.Cpu #region "ValueSource" private static uint[] _F_Mov_Si_S_() { - return new uint[] + return new[] { 0x1E201000u // FMOV S0, #2.0 }; @@ -22,7 +21,7 @@ namespace Ryujinx.Tests.Cpu private static uint[] _F_Mov_Si_D_() { - return new uint[] + return new[] { 0x1E601000u // FMOV D0, #2.0 }; @@ -30,7 +29,7 @@ namespace Ryujinx.Tests.Cpu #endregion [Test, Pairwise] [Explicit] - public void F_Mov_Si_S([ValueSource("_F_Mov_Si_S_")] uint opcodes, + public void F_Mov_Si_S([ValueSource(nameof(_F_Mov_Si_S_))] uint opcodes, [Range(0u, 255u, 1u)] uint imm8) { opcodes |= ((imm8 & 0xFFu) << 13); @@ -44,7 +43,7 @@ namespace Ryujinx.Tests.Cpu } [Test, Pairwise] [Explicit] - public void F_Mov_Si_D([ValueSource("_F_Mov_Si_D_")] uint opcodes, + public void F_Mov_Si_D([ValueSource(nameof(_F_Mov_Si_D_))] uint opcodes, [Range(0u, 255u, 1u)] uint imm8) { opcodes |= ((imm8 & 0xFFu) << 13); |