summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti8x/teeconn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti8x/teeconn.cpp')
-rw-r--r--src/devices/bus/ti8x/teeconn.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/ti8x/teeconn.cpp b/src/devices/bus/ti8x/teeconn.cpp
index cabe956b9da..65a3c716cc7 100644
--- a/src/devices/bus/ti8x/teeconn.cpp
+++ b/src/devices/bus/ti8x/teeconn.cpp
@@ -63,12 +63,12 @@ WRITE_LINE_MEMBER(tee_connector_device::ring_b_w)
MACHINE_CONFIG_START(tee_connector_device::device_add_mconfig)
MCFG_TI8X_LINK_PORT_ADD("a", default_ti8x_link_devices, nullptr)
- MCFG_TI8X_LINK_TIP_HANDLER(WRITELINE(tee_connector_device, tip_a_w))
- MCFG_TI8X_LINK_RING_HANDLER(WRITELINE(tee_connector_device, ring_a_w))
+ MCFG_TI8X_LINK_TIP_HANDLER(WRITELINE(*this, tee_connector_device, tip_a_w))
+ MCFG_TI8X_LINK_RING_HANDLER(WRITELINE(*this, tee_connector_device, ring_a_w))
MCFG_TI8X_LINK_PORT_ADD("b", default_ti8x_link_devices, nullptr)
- MCFG_TI8X_LINK_TIP_HANDLER(WRITELINE(tee_connector_device, tip_b_w))
- MCFG_TI8X_LINK_RING_HANDLER(WRITELINE(tee_connector_device, ring_b_w))
+ MCFG_TI8X_LINK_TIP_HANDLER(WRITELINE(*this, tee_connector_device, tip_b_w))
+ MCFG_TI8X_LINK_RING_HANDLER(WRITELINE(*this, tee_connector_device, ring_b_w))
MACHINE_CONFIG_END