aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
diff options
context:
space:
mode:
authormerry <git@mary.rs>2022-04-21 00:25:43 +0100
committerGitHub <noreply@github.com>2022-04-21 01:25:43 +0200
commit6a1a03566aa04d6e3e32547821aae0bc587d1128 (patch)
treec5a14a833469753ef102fc4446e1c7c95628bc63 /Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
parent13f5294aa3b8b179255fee1d49111896d5510800 (diff)
T32: Implement load/store single (immediate) (#3186)1.1.106
* T32: Implement load/store single (immediate) * tests * tidy formatting * address comments
Diffstat (limited to 'Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs')
-rw-r--r--Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs b/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
new file mode 100644
index 00000000..4fb02c2b
--- /dev/null
+++ b/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Ryujinx.Tests.Cpu
+{
+ public struct PrecomputedMemoryThumbTestCase
+ {
+ public ushort[] Instructions;
+ public uint[] StartRegs;
+ public uint[] FinalRegs;
+ public (ulong Address, ushort Value)[] MemoryDelta;
+ };
+} \ No newline at end of file