summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/disk.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-01-28 18:07:26 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-01-28 18:07:26 +0100
commitc2da3565d51bfcae7528585414e562d54c0c2138 (patch)
tree862085e17fa5cc5eff8cd1e66a65bd0d6ee332e6 /src/devices/bus/msx_cart/disk.cpp
parent7e53d69069e50166987437ec45a036d203b13d56 (diff)
imagedev\floppy: removed MCFG macros (nw)
Diffstat (limited to 'src/devices/bus/msx_cart/disk.cpp')
-rw-r--r--src/devices/bus/msx_cart/disk.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/msx_cart/disk.cpp b/src/devices/bus/msx_cart/disk.cpp
index a0e03e54920..4b941465e1e 100644
--- a/src/devices/bus/msx_cart/disk.cpp
+++ b/src/devices/bus/msx_cart/disk.cpp
@@ -206,7 +206,7 @@ MACHINE_CONFIG_START(msx_cart_vy0010_device::device_add_mconfig)
m_fdc->set_force_ready(true);
// Single sided 3.5" floppy drive
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35ssdd", msx_cart_disk_device::floppy_formats)
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35ssdd", msx_cart_disk_device::floppy_formats);
// Attach software lists
// We do not know in what kind of machine the user has inserted the floppy interface
@@ -220,7 +220,7 @@ MACHINE_CONFIG_START(msx_cart_fsfd1_device::device_add_mconfig)
WD2793(config, m_fdc, 4_MHz_XTAL / 4);
// Double sided 3.5" floppy drive
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats)
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats);
// Attach software lists
// We do not know in what kind of machine the user has inserted the floppy interface
@@ -235,7 +235,7 @@ MACHINE_CONFIG_START(msx_cart_fsfd1a_device::device_add_mconfig)
TC8566AF(config, m_fdc, 16'000'000);
// Double sided 3.5" floppy drive
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats)
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats);
// Attach software lists
// We do not know in what kind of machine the user has inserted the floppy interface
@@ -251,7 +251,7 @@ MACHINE_CONFIG_START(msx_cart_fscf351_device::device_add_mconfig)
m_fdc->set_force_ready(true);
// Double sided 3.5" floppy drive
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats)
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35dd", msx_cart_disk_device::floppy_formats);
// Attach software lists
// We do not know in what kind of machine the user has inserted the floppy interface