mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-11 07:18:14 +00:00
More analysis suggested tidy ups.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -9,7 +9,6 @@ namespace EightBit
|
||||
public abstract class Bus : IMapper
|
||||
{
|
||||
private byte data;
|
||||
private ushort address;
|
||||
|
||||
public event EventHandler<EventArgs> WritingByte;
|
||||
|
||||
@@ -21,7 +20,7 @@ namespace EightBit
|
||||
|
||||
public byte Data { get => this.data; set => this.data = value; }
|
||||
|
||||
public ushort Address { get => this.address; set => this.address = value; }
|
||||
public ushort Address { get; set; }
|
||||
|
||||
public abstract MemoryMapping Mapping(ushort absolute);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user