summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/all.cpp
diff options
context:
space:
mode:
author npwoods <npwoods@mess.org>2022-01-03 03:47:01 -0500
committer GitHub <noreply@github.com>2022-01-03 09:47:01 +0100
commitfbff8a2483f0fd6eea53995fdf189817f81435d8 (patch)
tree7e2a641d018198bdcebd332b070bb74cf5f65cd2 /src/lib/formats/all.cpp
parent53d6b930ef0b871aa041040fce22ee09bb74678d (diff)
Reimplemented support for the CoCo's RS-DOS filesystem on top of the "fsmgr" framework (currently read only) (#9080)
* Reimplemented support for the CoCo's RS-DOS filesystem on top of the "fsmgr" framework (currently read only) * Added support for file_type and ascii_flag metadata, minor bug fix decoding file allocation table entries * Creating a "CoCo Raw Disk" format and changing the CoCo RS-DOS filesystem to use it * 1. Adding COCO_RAWDSK to all.cpp 2. Fixing sector order on CoCo raw disk
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r--src/lib/formats/all.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp
index 7be97cec4f7..692977d4d03 100644
--- a/src/lib/formats/all.cpp
+++ b/src/lib/formats/all.cpp
@@ -356,6 +356,14 @@
#include "os9_dsk.h"
#endif
+#ifdef HAS_FORMATS_COCO_RAWDSK
+#include "coco_rawdsk.h"
+#endif
+
+#ifdef HAS_FORMATS_FS_COCO_RSDOS
+#include "fs_coco_rsdos.h"
+#endif
+
#ifdef HAS_FORMATS_JFD_DSK
#include "jfd_dsk.h"
#endif
@@ -1071,6 +1079,12 @@ void mame_formats_full_list(mame_formats_enumerator &en)
en.add(FLOPPY_JV1_FORMAT); // trs80_dsk.h
en.add(FLOPPY_JV3_FORMAT); // trs80_dsk.h
#endif
+#ifdef HAS_FORMATS_COCO_RAWDSK
+ en.add(FLOPPY_COCO_RAWDSK_FORMAT); // coco_rawdsk.h
+#endif
+#ifdef HAS_FORMATS_FS_COCO_RSDOS
+ en.add(fs::COCO_RSDOS); // fs_coco_rsdos.h
+#endif
en.category("Kaypro");
#ifdef HAS_FORMATS_KAYPRO_DSK