summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2014-03-18 12:44:38 +0000
committer Curt Coder <curtcoder@mail.com>2014-03-18 12:44:38 +0000
commit8c13619673a493d50285ffd59ba783b433b7e521 (patch)
tree9037c813a9d8bba150cee890e8fea9bc854a4447 /src/mess/machine
parentf65e037141714318cfd32ecf988a7993f6cd9b3f (diff)
n68681: Renamed to mc68681. (nw)
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/apollo.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mess/machine/apollo.c b/src/mess/machine/apollo.c
index f932a2e9c17..f30bee58d07 100644
--- a/src/mess/machine/apollo.c
+++ b/src/mess/machine/apollo.c
@@ -829,8 +829,8 @@ MACHINE_CONFIG_FRAGMENT( common )
MCFG_MC146818_ADD( APOLLO_RTC_TAG, XTAL_32_768kHz )
MCFG_MC146818_UTC( true )
- MCFG_DUARTN68681_ADD( APOLLO_SIO2_TAG, XTAL_3_6864MHz )
- MCFG_DUARTN68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio2_irq_handler))
+ MCFG_MC68681_ADD( APOLLO_SIO2_TAG, XTAL_3_6864MHz )
+ MCFG_MC68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio2_irq_handler))
MCFG_ISA16_BUS_ADD(APOLLO_ISA_TAG, ":"MAINCPU, isabus_intf)
MCFG_ISA16_BUS_CUSTOM_SPACES()
@@ -847,10 +847,10 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_FRAGMENT( apollo )
MCFG_FRAGMENT_ADD(common)
- MCFG_DUARTN68681_ADD( APOLLO_SIO_TAG, XTAL_3_6864MHz )
- MCFG_DUARTN68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio_irq_handler))
- MCFG_DUARTN68681_OUTPORT_CALLBACK(WRITE8(apollo_state, sio_output))
- MCFG_DUARTN68681_A_TX_CALLBACK(DEVWRITELINE(APOLLO_KBD_TAG, apollo_kbd_device, rx_w))
+ MCFG_MC68681_ADD( APOLLO_SIO_TAG, XTAL_3_6864MHz )
+ MCFG_MC68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio_irq_handler))
+ MCFG_MC68681_OUTPORT_CALLBACK(WRITE8(apollo_state, sio_output))
+ MCFG_MC68681_A_TX_CALLBACK(DEVWRITELINE(APOLLO_KBD_TAG, apollo_kbd_device, rx_w))
MACHINE_CONFIG_END
static DEVICE_INPUT_DEFAULTS_START( apollo_terminal )
@@ -866,13 +866,13 @@ DEVICE_INPUT_DEFAULTS_END
MACHINE_CONFIG_FRAGMENT( apollo_terminal )
MCFG_FRAGMENT_ADD(common)
- MCFG_DUARTN68681_ADD( APOLLO_SIO_TAG, XTAL_3_6864MHz )
- MCFG_DUARTN68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio_irq_handler))
- MCFG_DUARTN68681_OUTPORT_CALLBACK(WRITE8(apollo_state, sio_output))
- MCFG_DUARTN68681_B_TX_CALLBACK(DEVWRITELINE("rs232", rs232_port_device, write_txd))
+ MCFG_MC68681_ADD( APOLLO_SIO_TAG, XTAL_3_6864MHz )
+ MCFG_MC68681_IRQ_CALLBACK(WRITELINE(apollo_state, sio_irq_handler))
+ MCFG_MC68681_OUTPORT_CALLBACK(WRITE8(apollo_state, sio_output))
+ MCFG_MC68681_B_TX_CALLBACK(DEVWRITELINE("rs232", rs232_port_device, write_txd))
MCFG_RS232_PORT_ADD("rs232", default_rs232_devices, "serial_terminal")
- MCFG_RS232_RXD_HANDLER(DEVWRITELINE(APOLLO_SIO_TAG, duartn68681_device, rx_b_w))
+ MCFG_RS232_RXD_HANDLER(DEVWRITELINE(APOLLO_SIO_TAG, mc68681_device, rx_b_w))
MCFG_DEVICE_CARD_DEVICE_INPUT_DEFAULTS("serial_terminal", apollo_terminal)
MACHINE_CONFIG_END