diff options
author | 2024-10-15 20:15:25 -0500 | |
---|---|---|
committer | 2024-10-15 20:15:25 -0500 | |
commit | add6b4515206d5973ec7e3e30012a469fecc49bb (patch) | |
tree | 5e8a1071954fbcb9fcdb2802bb284285cdf187ae /src/devices/imagedev/floppy.cpp | |
parent | 53be4662331d1c0dd6454aff4db3ee960ea98c54 (diff) |
86f_dsk: add read 86f image support
Diffstat (limited to 'src/devices/imagedev/floppy.cpp')
-rw-r--r-- | src/devices/imagedev/floppy.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/imagedev/floppy.cpp b/src/devices/imagedev/floppy.cpp index c37183aa303..e350ac100f3 100644 --- a/src/devices/imagedev/floppy.cpp +++ b/src/devices/imagedev/floppy.cpp @@ -20,6 +20,7 @@ #include "formats/dsk_dsk.h" #include "formats/pc_dsk.h" #include "formats/ipf_dsk.h" +#include "formats/86f_dsk.h" #include "formats/fs_unformatted.h" #include "formats/fsblk_vec.h" @@ -164,6 +165,7 @@ void format_registration::add_fm_containers() add(FLOPPY_MFM_FORMAT); add(FLOPPY_TD0_FORMAT); add(FLOPPY_IMD_FORMAT); + add(FLOPPY_86F_FORMAT); } void format_registration::add_mfm_containers() |