mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-25 09:16:41 +00:00
More analysis suggested tidy ups.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user