blob: 40ed26757268f86a4f6530585e1527ec1499ad5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
namespace Ryujinx.Tests.Cpu
{
public struct PrecomputedMemoryThumbTestCase
{
public ushort[] Instructions;
public uint[] StartRegs;
public uint[] FinalRegs;
public (ulong Address, ushort Value)[] MemoryDelta;
}
}
|