summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/all.cpp
diff options
context:
space:
mode:
author npwoods <npwoods@mess.org>2022-06-30 03:25:50 -0400
committer GitHub <noreply@github.com>2022-06-30 09:25:50 +0200
commitab3a5e1df7c5cc430b6f4a3cf4516a1f734bb2b2 (patch)
tree7a59fd392959cd3e8a70de97c16a03eb21a2bca6 /src/lib/formats/all.cpp
parent7e123ca663943617d3d3169582964b8fee3d39ec (diff)
Created a CBM DOS file system driver and added it to the 1541 implementation (#9922)
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r--src/lib/formats/all.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp
index 5dedacc1b3b..30b3f451d04 100644
--- a/src/lib/formats/all.cpp
+++ b/src/lib/formats/all.cpp
@@ -472,6 +472,10 @@
#include "fs_oric_jasmin.h"
#endif
+#ifdef HAS_FORMATS_FS_CBMDOS
+#include "fs_cbmdos.h"
+#endif
+
#ifdef HAS_FORMATS_IBMXDF_DSK
#include "ibmxdf_dsk.h"
#endif
@@ -898,6 +902,9 @@ void mame_formats_full_list(mame_formats_enumerator &en)
#ifdef HAS_FORMATS_G64_DSK
en.add(FLOPPY_G64_FORMAT); // g64_dsk.h
#endif
+#ifdef HAS_FORMATS_FS_CBMDOS
+ en.add(fs::CBMDOS); // fs_cbmdos.h
+#endif
en.category("Camputers");
#ifdef HAS_FORMATS_CAMPLYNX_CAS