summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/msx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/msx.cpp')
-rw-r--r--src/mame/drivers/msx.cpp23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/mame/drivers/msx.cpp b/src/mame/drivers/msx.cpp
index 9a76bc47ff8..3b6a89ba09d 100644
--- a/src/mame/drivers/msx.cpp
+++ b/src/mame/drivers/msx.cpp
@@ -1320,18 +1320,21 @@ void msx_state::msx_microsol(machine_config &config)
fdc.set_force_ready(true);
}
-MACHINE_CONFIG_START(msx_state::msx_1_35_ssdd_drive)
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35ssdd", msx_state::floppy_formats)
-MACHINE_CONFIG_END
+void msx_state::msx_1_35_ssdd_drive(machine_config &config)
+{
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35ssdd", msx_state::floppy_formats);
+}
-MACHINE_CONFIG_START(msx_state::msx_1_35_dd_drive)
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35dd", msx_state::floppy_formats)
-MACHINE_CONFIG_END
+void msx_state::msx_1_35_dd_drive(machine_config &config)
+{
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35dd", msx_state::floppy_formats);
+}
-MACHINE_CONFIG_START(msx_state::msx_2_35_dd_drive)
- MCFG_FLOPPY_DRIVE_ADD("fdc:0", msx_floppies, "35dd", msx_state::floppy_formats)
- MCFG_FLOPPY_DRIVE_ADD("fdc:1", msx_floppies, "35dd", msx_state::floppy_formats)
-MACHINE_CONFIG_END
+void msx_state::msx_2_35_dd_drive(machine_config &config)
+{
+ FLOPPY_CONNECTOR(config, "fdc:0", msx_floppies, "35dd", msx_state::floppy_formats);
+ FLOPPY_CONNECTOR(config, "fdc:1", msx_floppies, "35dd", msx_state::floppy_formats);
+}
MACHINE_CONFIG_START(msx2_state::msx_ym2413)
MCFG_DEVICE_ADD("ym2413", YM2413, 21.477272_MHz_XTAL / 6)