Tidy the processor object a little.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-03-03 10:44:52 +00:00
parent 22cb8b142b
commit 3d2b861b56

View File

@ -11,10 +11,7 @@ namespace EightBit
private PinLevel resetLine; private PinLevel resetLine;
private PinLevel intLine; private PinLevel intLine;
protected Processor(Bus memory) protected Processor(Bus memory) => this.Bus = memory;
{
this.Bus = memory;
}
public event EventHandler<EventArgs> RaisingRESET; public event EventHandler<EventArgs> RaisingRESET;