From 8009b01385d04d22073ecc22136c39630c7e4938 Mon Sep 17 00:00:00 2001 From: Joakim Larsson Edstrom Date: Wed, 18 Jan 2017 16:29:07 +0100 Subject: [PATCH] fccpu20: Changed crystal value after visual verification to get 9600 as the manual says, terminal works but needs to be set to 7bit --- src/mame/drivers/fccpu20.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/fccpu20.cpp b/src/mame/drivers/fccpu20.cpp index 94f026018ea..2aedc8c181b 100644 --- a/src/mame/drivers/fccpu20.cpp +++ b/src/mame/drivers/fccpu20.cpp @@ -347,7 +347,7 @@ static MACHINE_CONFIG_START (cpu20, cpu20_state) /* MPCC */ #define RS232P1_TAG "rs232p1" - MCFG_MPCC68561_ADD ("mpcc", XTAL_8_664MHz, 0, 0) + MCFG_MPCC68561_ADD ("mpcc", XTAL_16MHz, 0, 0) MCFG_MPCC_OUT_TXD_CB(DEVWRITELINE(RS232P1_TAG, rs232_port_device, write_txd)) MCFG_MPCC_OUT_DTR_CB(DEVWRITELINE(RS232P1_TAG, rs232_port_device, write_dtr)) MCFG_MPCC_OUT_RTS_CB(DEVWRITELINE(RS232P1_TAG, rs232_port_device, write_rts))