// // Copyright (c) Adrian Conlon. All rights reserved. // namespace Fuse { using System.Collections.ObjectModel; using EightBit; public interface IRegisterState { ReadOnlyCollection Registers { get; } bool Halted { get; } int TStates { get; } void Parse(Lines lines); } }