mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-19 08:31:41 +00:00
23 lines
446 B
C#
23 lines
446 B
C#
|
// <copyright file="IRegisterState.cs" company="Adrian Conlon">
|
|||
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
namespace Fuse
|
|||
|
{
|
|||
|
using System.Collections.ObjectModel;
|
|||
|
using EightBit;
|
|||
|
|
|||
|
public interface IRegisterState
|
|||
|
{
|
|||
|
ReadOnlyCollection<Register16> Registers
|
|||
|
{
|
|||
|
get;
|
|||
|
}
|
|||
|
|
|||
|
bool Halted { get; }
|
|||
|
|
|||
|
int TStates { get; }
|
|||
|
|
|||
|
void Parse(Lines lines);
|
|||
|
}
|
|||
|
}
|