diff --git a/inc/Memory.h b/inc/Memory.h index d4b0d71..c69bd72 100644 --- a/inc/Memory.h +++ b/inc/Memory.h @@ -43,9 +43,7 @@ namespace EightBit { Memory(uint16_t addressMask); // Only fired with read/write methods - Signal WritingByte; Signal WrittenByte; - Signal ReadingByte; Signal ReadByte; register16_t& ADDRESS() { return m_address; } @@ -76,8 +74,6 @@ namespace EightBit { uint8_t read() { auto content = reference(); - ReadingByte.fire(AddressEventArgs(ADDRESS().word, content)); - content = reference(); ReadByte.fire(AddressEventArgs(ADDRESS().word, content)); return content; } @@ -88,7 +84,6 @@ namespace EightBit { } void write(uint8_t value) { - WritingByte.fire(AddressEventArgs(ADDRESS().word, value)); reference() = value; WrittenByte.fire(AddressEventArgs(ADDRESS().word, value)); }