summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/jupiter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jupiter.cpp')
-rw-r--r--src/mame/drivers/jupiter.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/drivers/jupiter.cpp b/src/mame/drivers/jupiter.cpp
index f340242bca1..68ac8b75910 100644
--- a/src/mame/drivers/jupiter.cpp
+++ b/src/mame/drivers/jupiter.cpp
@@ -278,8 +278,8 @@ void jupiter3_state::machine_reset()
MACHINE_CONFIG_START(jupiter2_state::jupiter2)
// basic machine hardware
- MCFG_CPU_ADD(MCM6571AP_TAG, M6800, 2000000)
- MCFG_CPU_PROGRAM_MAP(jupiter2_mem)
+ MCFG_DEVICE_ADD(MCM6571AP_TAG, M6800, 2000000)
+ MCFG_DEVICE_PROGRAM_MAP(jupiter2_mem)
// devices
MCFG_DEVICE_ADD(INS1771N1_TAG, FD1771, 1000000)
@@ -287,20 +287,20 @@ MACHINE_CONFIG_START(jupiter2_state::jupiter2)
MCFG_FLOPPY_DRIVE_ADD(INS1771N1_TAG":1", jupiter_floppies, nullptr, floppy_image_device::default_floppy_formats)
MCFG_DEVICE_ADD("acia0", ACIA6850, XTAL(2'000'000)) // unknown frequency
- MCFG_ACIA6850_TXD_HANDLER(DEVWRITELINE("serial0", rs232_port_device, write_txd))
- MCFG_ACIA6850_RTS_HANDLER(DEVWRITELINE("serial0", rs232_port_device, write_rts))
+ MCFG_ACIA6850_TXD_HANDLER(WRITELINE("serial0", rs232_port_device, write_txd))
+ MCFG_ACIA6850_RTS_HANDLER(WRITELINE("serial0", rs232_port_device, write_rts))
- MCFG_RS232_PORT_ADD("serial0", default_rs232_devices, "terminal")
- MCFG_RS232_RXD_HANDLER(DEVWRITELINE("acia0", acia6850_device, write_rxd))
- MCFG_RS232_CTS_HANDLER(DEVWRITELINE("acia0", acia6850_device, write_cts))
+ MCFG_DEVICE_ADD("serial0", RS232_PORT, default_rs232_devices, "terminal")
+ MCFG_RS232_RXD_HANDLER(WRITELINE("acia0", acia6850_device, write_rxd))
+ MCFG_RS232_CTS_HANDLER(WRITELINE("acia0", acia6850_device, write_cts))
MCFG_DEVICE_ADD("acia1", ACIA6850, XTAL(2'000'000)) // unknown frequency
- MCFG_ACIA6850_TXD_HANDLER(DEVWRITELINE("serial1", rs232_port_device, write_txd))
- MCFG_ACIA6850_RTS_HANDLER(DEVWRITELINE("serial1", rs232_port_device, write_rts))
+ MCFG_ACIA6850_TXD_HANDLER(WRITELINE("serial1", rs232_port_device, write_txd))
+ MCFG_ACIA6850_RTS_HANDLER(WRITELINE("serial1", rs232_port_device, write_rts))
- MCFG_RS232_PORT_ADD("serial1", default_rs232_devices, "terminal")
- MCFG_RS232_RXD_HANDLER(DEVWRITELINE("acia1", acia6850_device, write_rxd))
- MCFG_RS232_CTS_HANDLER(DEVWRITELINE("acia1", acia6850_device, write_cts))
+ MCFG_DEVICE_ADD("serial1", RS232_PORT, default_rs232_devices, "terminal")
+ MCFG_RS232_RXD_HANDLER(WRITELINE("acia1", acia6850_device, write_rxd))
+ MCFG_RS232_CTS_HANDLER(WRITELINE("acia1", acia6850_device, write_cts))
// internal ram
MCFG_RAM_ADD(RAM_TAG)
@@ -314,9 +314,9 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(jupiter3_state::jupiter3)
// basic machine hardware
- MCFG_CPU_ADD(Z80_TAG, Z80, 4000000)
- MCFG_CPU_PROGRAM_MAP(jupiter3_mem)
- MCFG_CPU_IO_MAP(jupiter3_io)
+ MCFG_DEVICE_ADD(Z80_TAG, Z80, 4000000)
+ MCFG_DEVICE_PROGRAM_MAP(jupiter3_mem)
+ MCFG_DEVICE_IO_MAP(jupiter3_io)
// video hardware
MCFG_SCREEN_ADD("screen", RASTER)