aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
diff options
context:
space:
mode:
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