T32: Implement load/store single (immediate) (#3186)
* T32: Implement load/store single (immediate) * tests * tidy formatting * address comments
This commit is contained in:
parent
13f5294aa3
commit
6a1a03566a
6 changed files with 644 additions and 1 deletions
12
Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
Normal file
12
Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue