EightBitNet/Fuse/IRegisterState.cs
Adrian Conlon 63ef445a78 Make the Fuse test classes more generic, so I can use them again for the Z80 fuse runner.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-08-13 18:51:34 +01:00

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);
}
}