//
// Copyright (c) Adrian Conlon. All rights reserved.
//
namespace EightBit
{
using System;
public class ClockedChip : Chip
{
protected ClockedChip()
{
}
public event EventHandler Ticked;
public int Cycles { get; protected set; }
public void Tick(int extra)
{
for (var i = 0; i < extra; ++i)
{
this.Tick();
}
}
public void Tick()
{
++this.Cycles;
this.OnTicked();
}
protected virtual void OnTicked() => this.Ticked?.Invoke(this, EventArgs.Empty);
protected void ResetCycles() => this.Cycles = 0;
}
}