T32: Implement load/store single (immediate) (#3186)

* T32: Implement load/store single (immediate)

* tests

* tidy formatting

* address comments
This commit is contained in:
merry 2022-04-21 00:25:43 +01:00 committed by GitHub
parent d900694edf
commit 2aa040dc47
6 changed files with 644 additions and 1 deletions

View 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;
};
}