From 05eb5f34a2b9edffaf7c235924413f440fcea0d0 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 22 Nov 2017 02:29:40 -0500 Subject: vt240: Fix device type (nw) --- src/mame/drivers/vt240.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mame/drivers/vt240.cpp b/src/mame/drivers/vt240.cpp index 36fe38796d5..483783444fc 100644 --- a/src/mame/drivers/vt240.cpp +++ b/src/mame/drivers/vt240.cpp @@ -57,7 +57,7 @@ public: required_device m_maincpu; required_device m_i8085; required_device m_i8251; - required_device m_duart; + required_device m_duart; required_device m_host; required_device m_hgdc; required_device m_bank; @@ -691,13 +691,13 @@ static MACHINE_CONFIG_START( vt240 ) MCFG_CLOCK_SIGNAL_HANDLER(WRITELINE(vt240_state, write_keyboard_clock)) MCFG_RS232_PORT_ADD("host", default_rs232_devices, "null_modem") - MCFG_RS232_RXD_HANDLER(DEVWRITELINE("duart", mc68681_device, rx_a_w)) - MCFG_RS232_DSR_HANDLER(DEVWRITELINE("duart", mc68681_device, ip5_w)) - MCFG_RS232_CTS_HANDLER(DEVWRITELINE("duart", mc68681_device, ip0_w)) + MCFG_RS232_RXD_HANDLER(DEVWRITELINE("duart", scn2681_device, rx_a_w)) + MCFG_RS232_DSR_HANDLER(DEVWRITELINE("duart", scn2681_device, ip5_w)) + MCFG_RS232_CTS_HANDLER(DEVWRITELINE("duart", scn2681_device, ip0_w)) MCFG_RS232_PORT_ADD("printer", default_rs232_devices, nullptr) - MCFG_RS232_RXD_HANDLER(DEVWRITELINE("duart", mc68681_device, rx_b_w)) - MCFG_RS232_DSR_HANDLER(DEVWRITELINE("duart", mc68681_device, ip1_w)) + MCFG_RS232_RXD_HANDLER(DEVWRITELINE("duart", scn2681_device, rx_b_w)) + MCFG_RS232_DSR_HANDLER(DEVWRITELINE("duart", scn2681_device, ip1_w)) MCFG_X2212_ADD("x2212") MACHINE_CONFIG_END -- cgit v1.2.3