mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-11 01:47:43 +02:00

* T32: Implement load/store single (immediate) * tests * tidy formatting * address comments
12 lines
No EOL
272 B
C#
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;
|
|
};
|
|
} |