From 5a6310fd1fd5dfdcaf42fac26df7f5c861bb8687 Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Fri, 7 Jun 2013 18:00:59 +0000 Subject: [PATCH] (MESS) altos5: Fixed RS-232 interface. (nw) --- src/mess/drivers/altos5.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mess/drivers/altos5.c b/src/mess/drivers/altos5.c index 0d3fb6be8db..4466d1a1d1f 100644 --- a/src/mess/drivers/altos5.c +++ b/src/mess/drivers/altos5.c @@ -404,10 +404,10 @@ static Z80SIO_INTERFACE( sio_intf ) static const rs232_port_interface rs232_intf = { DEVCB_NULL, - DEVCB_DEVICE_LINE_MEMBER("z80sio", z80dart_device, dcda_w), + DEVCB_DEVICE_LINE_MEMBER("z80sio", z80dart_device, dcdb_w), DEVCB_NULL, - DEVCB_NULL, - DEVCB_DEVICE_LINE_MEMBER("z80sio", z80dart_device, ctsa_w) + DEVCB_DEVICE_LINE_MEMBER("z80sio", z80dart_device, rib_w), + DEVCB_DEVICE_LINE_MEMBER("z80sio", z80dart_device, ctsb_w) }; static SLOT_INTERFACE_START( altos5_floppies )