Files
EightBitNet/M6502/M6502.HarteTest/State.cs
2024-05-21 19:41:16 +01:00

20 lines
335 B
C#

namespace M6502.HarteTest
{
public 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; }
}
}