summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mb89374.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mb89374.cpp')
-rw-r--r--src/devices/machine/mb89374.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/machine/mb89374.cpp b/src/devices/machine/mb89374.cpp
index 3e888d820ec..a2dacb9c47b 100644
--- a/src/devices/machine/mb89374.cpp
+++ b/src/devices/machine/mb89374.cpp
@@ -131,10 +131,6 @@ void mb89374_device::device_start()
// set our instruction counter
set_icountptr(m_icount);
- // resolve callbacks
- m_out_irq_cb.resolve_safe();
- m_out_po_cb.resolve_all_safe();
-
// state saving
save_item(NAME(m_irq));
save_item(NAME(m_po));
@@ -326,6 +322,7 @@ void mb89374_device::write(offs_t offset, uint8_t data)
case REGISTER_RXIER:
m_rxier = data;
+ break;
case REGISTER_TXSR:
m_txsr = data | TXSR_MASK;