Ryujinx/src/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs

11 lines
257 B
C#
Raw Normal View History

namespace Ryujinx.Tests.Cpu
{
public struct PrecomputedMemoryThumbTestCase
{
public ushort[] Instructions;
public uint[] StartRegs;
public uint[] FinalRegs;
public (ulong Address, ushort Value)[] MemoryDelta;
2023-07-01 04:14:34 +02:00
}
}