Ryujinx/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
2022-03-29 11:42:08 +01:00

12 lines
No EOL
272 B
C#

using System;
namespace Ryujinx.Tests.Cpu
{
public struct PrecomputedMemoryThumbTestCase
{
public ushort[] Instructions;
public uint[] StartRegs;
public uint[] FinalRegs;
public (ulong Address, ushort Value)[] MemoryDelta;
};
}