diff options
author | 2017-06-02 08:46:37 +0200 | |
---|---|---|
committer | 2017-06-02 08:46:37 +0200 | |
commit | dc7eec650a98a1d89690bdd67f0d2e3fd8f10893 (patch) | |
tree | 5e0abbe3c138ef5c2139df9506c539c520a45a3f /src/devices/machine/z80sio.cpp | |
parent | 9881020929083b49eeb740471863b350273c2200 (diff) |
some more device_add_mconfig. Only devices/bus remains. (nw)
Diffstat (limited to 'src/devices/machine/z80sio.cpp')
-rw-r--r-- | src/devices/machine/z80sio.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/devices/machine/z80sio.cpp b/src/devices/machine/z80sio.cpp index e6fe879f798..6e7cbeef010 100644 --- a/src/devices/machine/z80sio.cpp +++ b/src/devices/machine/z80sio.cpp @@ -104,17 +104,13 @@ DEFINE_DEVICE_TYPE(UPD7201_NEW, upd7201_new_device, "upd7201_new", "NEC uP DEFINE_DEVICE_TYPE(I8274_NEW, i8274_new_device, "i8274_new", "Intel 8274 MPSC (new)") // Remove trailing N when z80dart.cpp's 8274 implementation is fully replaced //------------------------------------------------- -// device_mconfig_additions - +// device_add_mconfig - add device configuration //------------------------------------------------- -MACHINE_CONFIG_START( z80sio ) +MACHINE_CONFIG_MEMBER( z80sio_device::device_add_mconfig ) MCFG_DEVICE_ADD(CHANA_TAG, Z80SIO_CHANNEL, 0) MCFG_DEVICE_ADD(CHANB_TAG, Z80SIO_CHANNEL, 0) MACHINE_CONFIG_END -machine_config_constructor z80sio_device::device_mconfig_additions() const -{ - return MACHINE_CONFIG_NAME( z80sio ); -} //************************************************************************** // LIVE DEVICE |