Ryujinx/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
2022-03-26 11:12:25 +00:00

12 lines
No EOL
263 B
C#

using System;
namespace Ryujinx.Tests.Cpu
{
public struct PrecomputedMemoryThumbTestCase
{
public ushort[] Instructions;
public uint[] StartRegs;
public uint[] FinalRegs;
public Tuple<ulong, ushort>[] MemoryDelta;
};
}