mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:18:34 +00:00
6a1a03566a
* T32: Implement load/store single (immediate) * tests * tidy formatting * address comments
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;
|
|
};
|
|
} |