Files
EightBitNet/M6502/M6502.HarteTest/State.cs
2024-07-18 11:38:02 +01:00

20 lines
342 B
C#

namespace M6502.HarteTest
{
public sealed class State
{
public ushort PC { get; set; }
public byte S { get; set; }
public byte A { get; set; }
public byte X { get; set; }
public byte Y { get; set; }
public byte P { get; set; }
public int[][]? RAM { get; set; }
}
}