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;