model1io: hack to get Clang to compile, plz fix correctly! (nw)

This commit is contained in:
arbee 2018-04-26 22:03:38 -04:00
parent 127c21d541
commit 91889fc1cd
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ model1io_device::model1io_device(const machine_config &mconfig, const char *tag,
m_eeprom(*this, "eeprom"),
m_buttons(*this, "buttons"),
m_read_cb(*this), m_write_cb(*this),
m_in_cb{ {*this}, {*this}, {*this}, {*this} },
m_in_cb{ {*this}, {*this}, {*this}, {*this}, {*this}, {*this} },
m_drive_read_cb(*this), m_drive_write_cb(*this),
m_an_cb{ {*this}, {*this}, {*this}, {*this}, {*this}, {*this}, {*this}, {*this} },
m_output_cb(*this),

View File

@ -138,7 +138,7 @@ private:
devcb_read8 m_read_cb;
devcb_write8 m_write_cb;
devcb_read8 m_in_cb[4];
devcb_read8 m_in_cb[6];
devcb_read8 m_drive_read_cb;
devcb_write8 m_drive_write_cb;
devcb_read8 m_an_cb[8];