mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-05 06:26:35 +00:00
27 lines
566 B
C#
27 lines
566 B
C#
namespace SM83.HarteTest
|
|
{
|
|
internal sealed class State
|
|
{
|
|
public ushort PC { get; set; }
|
|
|
|
public ushort SP { get; set; }
|
|
|
|
public byte A { get; set; }
|
|
public byte F { get; set; }
|
|
|
|
public byte B { get; set; }
|
|
public byte C { get; set; }
|
|
|
|
public byte D { get; set; }
|
|
public byte E { get; set; }
|
|
|
|
public byte H { get; set; }
|
|
public byte L { get; set; }
|
|
|
|
public byte IME { get; set; }
|
|
public byte IE { get; set; }
|
|
|
|
public int[][]? RAM { get; set; }
|
|
}
|
|
}
|