diff options
| author | 2018-08-11 15:00:54 +0200 | |
|---|---|---|
| committer | 2018-08-11 15:01:20 +0200 | |
| commit | d5d598a1c021c19e992e5f4cd8f56aa8c697076e (patch) | |
| tree | 3deeca26e7b770f0140041a1902d3b9bee21f6f4 /src/devices/machine/wozfdc.cpp | |
| parent | 543e49cc2443e3ab531168ec80e93dd3afeea795 (diff) | |
-7200fifo, 7400, 7404, 74123, 74145, 74148, 74153, 74157, 74161, 74259: [Ryan Holtz]
* Removed MCFG and old devcb macros.
AJR, any breakage? nw
Diffstat (limited to 'src/devices/machine/wozfdc.cpp')
| -rw-r--r-- | src/devices/machine/wozfdc.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/machine/wozfdc.cpp b/src/devices/machine/wozfdc.cpp index 79cbb43fadb..61f1150bee0 100644 --- a/src/devices/machine/wozfdc.cpp +++ b/src/devices/machine/wozfdc.cpp @@ -45,10 +45,11 @@ const tiny_rom_entry *wozfdc_device::device_rom_region() const // device_add_mconfig - add device configuration //------------------------------------------------- -MACHINE_CONFIG_START(wozfdc_device::device_add_mconfig) - MCFG_DEVICE_ADD("phaselatch", F9334, 0) // 9334 on circuit diagram but 74LS259 in parts list; actual chip may vary - MCFG_ADDRESSABLE_LATCH_PARALLEL_OUT_CB(WRITE8(*this, wozfdc_device, set_phase)) -MACHINE_CONFIG_END +void wozfdc_device::device_add_mconfig(machine_config &config) +{ + F9334(config, m_phaselatch); // 9334 on circuit diagram but 74LS259 in parts list; actual chip may vary + m_phaselatch->parallel_out_cb().set(FUNC(wozfdc_device::set_phase)); +} //************************************************************************** // LIVE DEVICE |
