summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti8x/graphlinkhle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti8x/graphlinkhle.cpp')
-rw-r--r--src/devices/bus/ti8x/graphlinkhle.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/bus/ti8x/graphlinkhle.cpp b/src/devices/bus/ti8x/graphlinkhle.cpp
index 1b2cc9c2465..ecdec035b06 100644
--- a/src/devices/bus/ti8x/graphlinkhle.cpp
+++ b/src/devices/bus/ti8x/graphlinkhle.cpp
@@ -49,10 +49,11 @@ void graph_link_hle_device::device_reset()
}
-MACHINE_CONFIG_START(graph_link_hle_device::device_add_mconfig)
- MCFG_DEVICE_ADD("rs232", RS232_PORT, default_rs232_devices, nullptr)
- MCFG_RS232_RXD_HANDLER(WRITELINE(*this, graph_link_hle_device, rx_w))
-MACHINE_CONFIG_END
+void graph_link_hle_device::device_add_mconfig(machine_config &config)
+{
+ RS232_PORT(config, m_serial_port, default_rs232_devices, nullptr);
+ m_serial_port->rxd_handler().set(FUNC(graph_link_hle_device::rx_w));
+}
void graph_link_hle_device::byte_collision()