diff options
author | 2018-05-27 15:53:18 -0400 | |
---|---|---|
committer | 2018-05-27 15:54:01 -0400 | |
commit | 182333e0db2899e2271bed703d6f1be8a7e694cd (patch) | |
tree | c2cb145145ec3a55279d4ffbf1a7b937bae116fd /src/devices/bus/isa/mc1502_fdc.cpp | |
parent | 0c522d46f850063ae00d5055aa13cefb5fc11e49 (diff) |
wd_fdc family, msm5832: Eliminate customized MCFG_XXX_ADD macros (nw)
Diffstat (limited to 'src/devices/bus/isa/mc1502_fdc.cpp')
-rw-r--r-- | src/devices/bus/isa/mc1502_fdc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/mc1502_fdc.cpp b/src/devices/bus/isa/mc1502_fdc.cpp index 3a7b5877c43..76f23cd74b6 100644 --- a/src/devices/bus/isa/mc1502_fdc.cpp +++ b/src/devices/bus/isa/mc1502_fdc.cpp @@ -53,7 +53,7 @@ ROM_END //------------------------------------------------- MACHINE_CONFIG_START(mc1502_fdc_device::device_add_mconfig) - MCFG_FD1793_ADD("fdc", XTAL(16'000'000) / 16) + MCFG_DEVICE_ADD("fdc", FD1793, 16_MHz_XTAL / 16) MCFG_WD_FDC_INTRQ_CALLBACK(WRITELINE(*this, mc1502_fdc_device, mc1502_fdc_irq_drq)) MCFG_WD_FDC_DRQ_CALLBACK(WRITELINE(*this, mc1502_fdc_device, mc1502_fdc_irq_drq)) MCFG_FLOPPY_DRIVE_ADD("fdc:0", mc1502_floppies, "525qd", mc1502_fdc_device::floppy_formats) |