summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/pipbug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipbug.cpp')
-rw-r--r--src/mame/drivers/pipbug.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/pipbug.cpp b/src/mame/drivers/pipbug.cpp
index c63caf19d42..518c45234a5 100644
--- a/src/mame/drivers/pipbug.cpp
+++ b/src/mame/drivers/pipbug.cpp
@@ -160,13 +160,13 @@ QUICKLOAD_LOAD_MEMBER( pipbug_state, pipbug )
MACHINE_CONFIG_START(pipbug_state::pipbug)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", S2650, XTAL(1'000'000))
- MCFG_CPU_PROGRAM_MAP(pipbug_mem)
- MCFG_CPU_DATA_MAP(pipbug_data)
- MCFG_S2650_FLAG_OUTPUT(DEVWRITELINE("rs232", rs232_port_device, write_txd))
+ MCFG_DEVICE_ADD("maincpu", S2650, XTAL(1'000'000))
+ MCFG_DEVICE_PROGRAM_MAP(pipbug_mem)
+ MCFG_DEVICE_DATA_MAP(pipbug_data)
+ MCFG_S2650_FLAG_OUTPUT(WRITELINE("rs232", rs232_port_device, write_txd))
/* video hardware */
- MCFG_RS232_PORT_ADD("rs232", default_rs232_devices, "terminal")
+ MCFG_DEVICE_ADD("rs232", RS232_PORT, default_rs232_devices, "terminal")
MCFG_RS232_RXD_HANDLER(INPUTLINE("maincpu", S2650_SENSE_LINE))
MCFG_SLOT_OPTION_DEVICE_INPUT_DEFAULTS("terminal", terminal)