diff options
author | 2018-08-30 20:15:32 +0200 | |
---|---|---|
committer | 2018-08-30 20:15:32 +0200 | |
commit | 4f6c56b47f94431064c436014eafc12721626ccc (patch) | |
tree | 2f9d2c87485c7edb78479e22927a6eda49285011 /src/devices/bus/abcbus/sio.cpp | |
parent | b9d16de49045b7b7147872cf96433445c11d665e (diff) |
z80daisy_generic, z80dart, z80dma: removed MCFG macros (nw)
z80_daisy: first part of MCFG macro removal (nw)
Diffstat (limited to 'src/devices/bus/abcbus/sio.cpp')
-rw-r--r-- | src/devices/bus/abcbus/sio.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/bus/abcbus/sio.cpp b/src/devices/bus/abcbus/sio.cpp index 1521e5b7459..326d4f07a73 100644 --- a/src/devices/bus/abcbus/sio.cpp +++ b/src/devices/bus/abcbus/sio.cpp @@ -76,10 +76,11 @@ const tiny_rom_entry *abc_sio_device::device_rom_region() const // device_add_mconfig - add device configuration //------------------------------------------------- -MACHINE_CONFIG_START(abc_sio_device::device_add_mconfig) - MCFG_DEVICE_ADD(Z80CTC_TAG, Z80CTC, XTAL(4'915'200)) - MCFG_DEVICE_ADD(Z80SIO_TAG, Z80DART, 0) -MACHINE_CONFIG_END +void abc_sio_device::device_add_mconfig(machine_config &config) +{ + Z80CTC(config, m_ctc, XTAL(4'915'200)); + Z80DART(config, m_sio, 0); +} |