summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cat.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-11-22 10:59:00 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-11-22 10:59:05 -0500
commitdce16721c900d7df5c2a22b658d22ad505c3d59d (patch)
treeb6e6579ddd64db617e56586c1b1cc45b418a1ba6 /src/mame/drivers/cat.cpp
parent837b7b17b6a448a19d730741866142f019511876 (diff)
mc68681: Use MCFG_DEVICE_ADD instead of custom macro; switch one more to SCN2681 (nw)
Diffstat (limited to 'src/mame/drivers/cat.cpp')
-rw-r--r--src/mame/drivers/cat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cat.cpp b/src/mame/drivers/cat.cpp
index 9634752eba1..42f61e413f1 100644
--- a/src/mame/drivers/cat.cpp
+++ b/src/mame/drivers/cat.cpp
@@ -1070,7 +1070,7 @@ static MACHINE_CONFIG_START( cat )
MCFG_VIDEO_START_OVERRIDE(cat_state,cat)
- MCFG_MC68681_ADD( "duartn68681", (XTAL_19_968MHz*2)/11 ) // duart is normally clocked by 3.6864mhz xtal, but cat seemingly uses a divider from the main xtal instead which probably yields 3.63054545Mhz. There is a trace to cut and a mounting area to allow using an actual 3.6864mhz xtal if you so desire
+ MCFG_DEVICE_ADD( "duartn68681", MC68681, (XTAL_19_968MHz*2)/11 ) // duart is normally clocked by 3.6864mhz xtal, but cat seemingly uses a divider from the main xtal instead which probably yields 3.63054545Mhz. There is a trace to cut and a mounting area to allow using an actual 3.6864mhz xtal if you so desire
MCFG_MC68681_IRQ_CALLBACK(WRITELINE(cat_state, cat_duart_irq_handler))
MCFG_MC68681_A_TX_CALLBACK(WRITELINE(cat_state, cat_duart_txa))
MCFG_MC68681_B_TX_CALLBACK(WRITELINE(cat_state, cat_duart_txb))