diff options
author | 2019-03-25 23:13:40 +0100 | |
---|---|---|
committer | 2019-03-25 23:13:40 +0100 | |
commit | b380514764cf857469bae61c11143a19f79a74c5 (patch) | |
tree | 63c8012e262618f08a332da31dd714281aa2c5ed /src/devices/machine/68153bim.cpp | |
parent | c24473ddff715ecec2e258a6eb38960cf8c8e98e (diff) |
Revert "conflict resolution (nw)"
This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing
changes made to 009cba4fb8102102168ef32870892438327f3705.
Diffstat (limited to 'src/devices/machine/68153bim.cpp')
-rw-r--r-- | src/devices/machine/68153bim.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/devices/machine/68153bim.cpp b/src/devices/machine/68153bim.cpp index 8df821a813e..30be9ea5e81 100644 --- a/src/devices/machine/68153bim.cpp +++ b/src/devices/machine/68153bim.cpp @@ -67,13 +67,12 @@ DEFINE_DEVICE_TYPE(EI68C153, ei68c153_device, "ei68c153", "EPIC // device_add_mconfig - add device configuration //------------------------------------------------- -void bim68153_device::device_add_mconfig(machine_config &config) -{ - MC68153_CHANNEL(config, m_chn[0], 0); - MC68153_CHANNEL(config, m_chn[1], 0); - MC68153_CHANNEL(config, m_chn[2], 0); - MC68153_CHANNEL(config, m_chn[3], 0); -} +MACHINE_CONFIG_START(bim68153_device::device_add_mconfig) + MCFG_DEVICE_ADD(CHN0_TAG, MC68153_CHANNEL, 0) + MCFG_DEVICE_ADD(CHN1_TAG, MC68153_CHANNEL, 0) + MCFG_DEVICE_ADD(CHN2_TAG, MC68153_CHANNEL, 0) + MCFG_DEVICE_ADD(CHN3_TAG, MC68153_CHANNEL, 0) +MACHINE_CONFIG_END //************************************************************************** // LIVE DEVICE |