From fb58ad9d8e43eac3334e5d259f37743441377e1c Mon Sep 17 00:00:00 2001 From: arbee Date: Mon, 15 Feb 2021 23:35:53 -0500 Subject: [PATCH] applefdintf: add helpers for adding 400K and HD Sony drives [R. Belmont] --- src/devices/machine/applefdintf.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/devices/machine/applefdintf.h b/src/devices/machine/applefdintf.h index 41bac87a169..8a36fae5e0e 100755 --- a/src/devices/machine/applefdintf.h +++ b/src/devices/machine/applefdintf.h @@ -78,6 +78,12 @@ public: template static void add_35(machine_config &config, T &floppy) { FLOPPY_CONNECTOR(config, floppy, floppies_35, "35dd", formats_35).enable_sound(true); } + template static void add_35_sd(machine_config &config, T &floppy) { + FLOPPY_CONNECTOR(config, floppy, floppies_35, "35sd", formats_35).enable_sound(true); + } + template static void add_35_hd(machine_config &config, T &floppy) { + FLOPPY_CONNECTOR(config, floppy, floppies_35, "35hd", formats_35).enable_sound(true); + } template static void add_35_nc(machine_config &config, T &floppy) { FLOPPY_CONNECTOR(config, floppy, floppies_35, nullptr, formats_35).enable_sound(true); }