diff options
author | merry <git@mary.rs> | 2022-04-21 00:25:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 01:25:43 +0200 |
commit | 6a1a03566aa04d6e3e32547821aae0bc587d1128 (patch) | |
tree | c5a14a833469753ef102fc4446e1c7c95628bc63 /Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs | |
parent | 13f5294aa3b8b179255fee1d49111896d5510800 (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.cs | 12 |
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 |