summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/applefdintf.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2021-03-04 10:49:33 +0100
committer Olivier Galibert <galibert@pobox.com>2021-03-05 10:17:20 +0100
commit92326e47afea2dd65ec6b5ec842454fc74f046cc (patch)
tree515de40cefa3c48bf30869f9031fbf78e4ba45d4 /src/devices/machine/applefdintf.cpp
parentf7011c21e11e988ec26d095f48b9070760c72bc3 (diff)
floppy: Beginning of the support for preformatted floppy images.
What's missing: - parameters (like the disk name when it exists) - possibly a cleanup of ram_open and friends (but not sure of the appropriate direction in which to go)
Diffstat (limited to 'src/devices/machine/applefdintf.cpp')
-rwxr-xr-xsrc/devices/machine/applefdintf.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/machine/applefdintf.cpp b/src/devices/machine/applefdintf.cpp
index ca2eb4b8748..2dc9fcec319 100755
--- a/src/devices/machine/applefdintf.cpp
+++ b/src/devices/machine/applefdintf.cpp
@@ -6,6 +6,7 @@
#include "formats/ap2_dsk.h"
#include "formats/ap_dsk35.h"
#include "formats/pc_dsk.h"
+#include "formats/fs_prodos.h"
void applefdintf_device::formats_525_13(format_registration &fr)
{
@@ -30,6 +31,8 @@ void applefdintf_device::formats_35(format_registration &fr)
fr.add(FLOPPY_WOZ_FORMAT);
fr.add(FLOPPY_APPLE_GCR_FORMAT);
fr.add(FLOPPY_APPLE_2MG_FORMAT);
+
+ fr.add(FS_PRODOS);
}
void applefdintf_device::floppies_525(device_slot_interface &device)