summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/svi3x8/expander/sv601.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/svi3x8/expander/sv601.cpp')
-rw-r--r--src/devices/bus/svi3x8/expander/sv601.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/svi3x8/expander/sv601.cpp b/src/devices/bus/svi3x8/expander/sv601.cpp
index 9571a43d9d0..51a51241897 100644
--- a/src/devices/bus/svi3x8/expander/sv601.cpp
+++ b/src/devices/bus/svi3x8/expander/sv601.cpp
@@ -22,9 +22,9 @@ DEFINE_DEVICE_TYPE(SV601, sv601_device, "sv601", "SV-601 Super Expander")
MACHINE_CONFIG_START(sv601_device::device_add_mconfig)
MCFG_SVI_SLOT_BUS_ADD
- MCFG_SVI_SLOT_INT_HANDLER(WRITELINE(sv601_device, int_w))
- MCFG_SVI_SLOT_ROMDIS_HANDLER(WRITELINE(sv601_device, romdis_w))
- MCFG_SVI_SLOT_RAMDIS_HANDLER(WRITELINE(sv601_device, ramdis_w))
+ MCFG_SVI_SLOT_INT_HANDLER(WRITELINE(*this, sv601_device, int_w))
+ MCFG_SVI_SLOT_ROMDIS_HANDLER(WRITELINE(*this, sv601_device, romdis_w))
+ MCFG_SVI_SLOT_RAMDIS_HANDLER(WRITELINE(*this, sv601_device, ramdis_w))
MCFG_SVI_SLOT_ADD("0", svi_slot_cards, nullptr)
MCFG_SVI_SLOT_ADD("1", svi_slot_cards, nullptr)
MCFG_SVI_SLOT_ADD("2", svi_slot_cards, nullptr)