mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +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;
|
|
};
|
|
} |