summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-02-15 23:35:53 -0500
committer arbee <rb6502@users.noreply.github.com>2021-02-15 23:35:53 -0500
commitfb58ad9d8e43eac3334e5d259f37743441377e1c (patch)
tree550a574bdc56571fe3ea5f3b51966f097cc95607
parentd47b43400a21acd8986fee53f564592e7accc8ce (diff)
applefdintf: add helpers for adding 400K and HD Sony drives [R. Belmont]
-rwxr-xr-xsrc/devices/machine/applefdintf.h6
1 files changed, 6 insertions, 0 deletions
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<typename T> static void add_35(machine_config &config, T &floppy) {
FLOPPY_CONNECTOR(config, floppy, floppies_35, "35dd", formats_35).enable_sound(true);
}
+ template<typename T> static void add_35_sd(machine_config &config, T &floppy) {
+ FLOPPY_CONNECTOR(config, floppy, floppies_35, "35sd", formats_35).enable_sound(true);
+ }
+ template<typename T> static void add_35_hd(machine_config &config, T &floppy) {
+ FLOPPY_CONNECTOR(config, floppy, floppies_35, "35hd", formats_35).enable_sound(true);
+ }
template<typename T> static void add_35_nc(machine_config &config, T &floppy) {
FLOPPY_CONNECTOR(config, floppy, floppies_35, nullptr, formats_35).enable_sound(true);
}