mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-10 14:37:00 +00:00
Tidy some inconsistencies in various emulation
This commit is contained in:
@@ -18,7 +18,7 @@ namespace EightBit
|
||||
public event EventHandler<EventArgs>? ReadingMemory;
|
||||
public event EventHandler<EventArgs>? ReadMemory;
|
||||
public event EventHandler<EventArgs>? WritingMemory;
|
||||
public event EventHandler<EventArgs>? WroteMemory;
|
||||
public event EventHandler<EventArgs>? WrittenMemory;
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -191,7 +191,7 @@ namespace EightBit
|
||||
|
||||
protected void OnWritingMemory() => this.WritingMemory?.Invoke(this, EventArgs.Empty);
|
||||
|
||||
protected void OnWroteMemory() => this.WroteMemory?.Invoke(this, EventArgs.Empty);
|
||||
protected void OnWrittenMemory() => this.WrittenMemory?.Invoke(this, EventArgs.Empty);
|
||||
|
||||
protected void MemoryWrite(byte low, byte high)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user