mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 01:12:25 -07:00
T32: Implement load/store single (immediate) (#3186)
* T32: Implement load/store single (immediate) * tests * tidy formatting * address comments
This commit is contained in:
12
Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
Normal file
12
Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Tests.Cpu
|
||||
{
|
||||
public struct PrecomputedMemoryThumbTestCase
|
||||
{
|
||||
public ushort[] Instructions;
|
||||
public uint[] StartRegs;
|
||||
public uint[] FinalRegs;
|
||||
public (ulong Address, ushort Value)[] MemoryDelta;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user