PrecomputedMemoryThumbTestCase.cs 272 B

123456789101112
  1. using System;
  2. namespace Ryujinx.Tests.Cpu
  3. {
  4. public struct PrecomputedMemoryThumbTestCase
  5. {
  6. public ushort[] Instructions;
  7. public uint[] StartRegs;
  8. public uint[] FinalRegs;
  9. public (ulong Address, ushort Value)[] MemoryDelta;
  10. };
  11. }