mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-10 10:25:26 +00:00
20 lines
335 B
C#
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; }
|
|
}
|
|
}
|