diff options
Diffstat (limited to 'src/devices/machine/74166.cpp')
-rw-r--r-- | src/devices/machine/74166.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/devices/machine/74166.cpp b/src/devices/machine/74166.cpp index a5a32187266..3a2139e6843 100644 --- a/src/devices/machine/74166.cpp +++ b/src/devices/machine/74166.cpp @@ -39,7 +39,7 @@ void ttl166_device::device_add_mconfig(machine_config &config) ttl166_device::ttl166_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, TTL166, tag, owner, clock), m_timer(*this, "timer"), - m_data_cb(*this), m_qh_cb(*this), + m_data_cb(*this, 0x00), m_qh_cb(*this), m_data(0x00), m_ser(0), m_clk(0), m_shld(0) { @@ -51,10 +51,6 @@ ttl166_device::ttl166_device(const machine_config &mconfig, const char *tag, dev void ttl166_device::device_start() { - // resolve callbacks - m_data_cb.resolve_safe(0x00); - m_qh_cb.resolve_safe(); - // register for save states save_item(NAME(m_data)); save_item(NAME(m_ser)); |