More analysis suggested tidy ups.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-06 23:41:56 +00:00
parent d6d8c4e13c
commit 0e8a530573
9 changed files with 26 additions and 42 deletions
+1 -3
View File
@@ -8,15 +8,13 @@ namespace EightBit
public class ClockedChip : Chip
{
private int cycles;
protected ClockedChip()
{
}
public event EventHandler<EventArgs> Ticked;
public int Cycles { get => this.cycles; protected set => this.cycles = value; }
public int Cycles { get; protected set; }
public void Tick(int extra)
{