diff options
author | 2021-04-28 16:17:41 +0200 | |
---|---|---|
committer | 2021-04-28 16:17:56 +0200 | |
commit | 8709e06b673765ef76594de2878a4c48aa011b42 (patch) | |
tree | 723bf2b9ac26e8796de8001ac8e0ea3e85e92606 /src/lib/formats/all.cpp | |
parent | 3b24032ba84a083a8f93274f10136a3f14d522d0 (diff) |
floppy: start block-devicing fielsystem support
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r-- | src/lib/formats/all.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index 5c3ee523508..0b50ddc9d69 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -457,6 +457,10 @@ #include "oric_tap.h" #endif +#ifdef HAS_FORMATS_FS_ORIC_JASMIN +#include "fs_oric_jasmin.h" +#endif + #ifdef HAS_FORMATS_IBMXDF_DSK #include "ibmxdf_dsk.h" #endif @@ -1130,6 +1134,10 @@ void mame_formats_full_list(mame_formats_enumerator &en) #endif #ifdef HAS_FORMATS_ORIC_DSK en.add(FLOPPY_ORIC_DSK_FORMAT); // oric_dsk.h + en.add(FLOPPY_ORIC_JASMIN_FORMAT); // oric_dsk.h +#endif +#ifdef HAS_FORMATS_FS_ORIC_JASMIN + en.add(FS_ORIC_JASMIN); // fs_oric_jasmin.h #endif en.category("Atari"); |