mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 20:36:40 +00:00
12 lines
272 B
C#
12 lines
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;
|
||
|
};
|
||
|
}
|