summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/dmv/dmvbus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/bus/dmv/dmvbus.c')
-rw-r--r--src/emu/bus/dmv/dmvbus.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/bus/dmv/dmvbus.c b/src/emu/bus/dmv/dmvbus.c
index 0484b539752..ba40d69dd30 100644
--- a/src/emu/bus/dmv/dmvbus.c
+++ b/src/emu/bus/dmv/dmvbus.c
@@ -199,6 +199,7 @@ dmvcart_slot_device::dmvcart_slot_device(const machine_config &mconfig, const ch
device_slot_interface(mconfig, *this),
m_prog_read_cb(*this),
m_prog_write_cb(*this),
+ m_out_int_cb(*this),
m_out_irq_cb(*this),
m_out_thold_cb(*this)
{
@@ -224,6 +225,7 @@ void dmvcart_slot_device::device_start()
// resolve callbacks
m_prog_read_cb.resolve_safe(0);
m_prog_write_cb.resolve_safe();
+ m_out_int_cb.resolve_safe();
m_out_irq_cb.resolve_safe();
m_out_thold_cb.resolve_safe();
}