summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-07-20 14:04:15 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-07-20 14:04:15 -0400
commit7be120ab7d1feb28a89b979265dfcc3d580d2e7c (patch)
treea9ef0b217cdfbecbd6a925b135971cd5962525b5
parentbd79a63076a9cc8b0a4f9d53528cf4950e331a51 (diff)
trs80.cpp: Fix configuration (nw)
-rw-r--r--src/mame/drivers/trs80.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/trs80.cpp b/src/mame/drivers/trs80.cpp
index d51ed215686..f0f1250fd62 100644
--- a/src/mame/drivers/trs80.cpp
+++ b/src/mame/drivers/trs80.cpp
@@ -535,10 +535,10 @@ MACHINE_CONFIG_START(trs80_state::model1) // model I, level II
m_brg->ft_handler().set(m_uart, FUNC(ay31015_device::write_tcp));
MCFG_DEVICE_ADD("uart", AY31015, 0)
- MCFG_AY51013_READ_SI_CB(READLINE("rs232", rs232_port_device, rxd_r))
- MCFG_AY51013_WRITE_SO_CB(WRITELINE("rs232", rs232_port_device, write_txd))
- //MCFG_AY51013_WRITE_DAV_CB(WRITELINE( , , ))
- MCFG_AY51013_AUTO_RDAV(true)
+ MCFG_AY31015_READ_SI_CB(READLINE("rs232", rs232_port_device, rxd_r))
+ MCFG_AY31015_WRITE_SO_CB(WRITELINE("rs232", rs232_port_device, write_txd))
+ //MCFG_AY31015_WRITE_DAV_CB(WRITELINE( , , ))
+ MCFG_AY31015_AUTO_RDAV(true)
MCFG_DEVICE_ADD("rs232", RS232_PORT, default_rs232_devices, nullptr)
MACHINE_CONFIG_END