From 3d2b861b56b7b94a95a722ae5d4ff133f2526a3f Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 3 Mar 2019 10:44:52 +0000 Subject: [PATCH] Tidy the processor object a little. Signed-off-by: Adrian Conlon --- EightBit/Processor.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/EightBit/Processor.cs b/EightBit/Processor.cs index d625bcb..055e017 100644 --- a/EightBit/Processor.cs +++ b/EightBit/Processor.cs @@ -11,10 +11,7 @@ namespace EightBit private PinLevel resetLine; private PinLevel intLine; - protected Processor(Bus memory) - { - this.Bus = memory; - } + protected Processor(Bus memory) => this.Bus = memory; public event EventHandler RaisingRESET;