This commit is contained in:
Adrian.Conlon 2017-09-07 20:12:11 +01:00
commit 0dcc5086d7

View File

@ -9,7 +9,10 @@
namespace EightBit {
class Bus {
public:
Bus() {}
Bus()
: m_temporary(0xff), m_data(nullptr) {
m_address.word = 0xffff;
}
Signal<AddressEventArgs> WrittenByte;
Signal<AddressEventArgs> ReadByte;