summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/imagedev')
-rw-r--r--src/emu/imagedev/floppy.c1
-rw-r--r--src/emu/imagedev/floppy.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/imagedev/floppy.c b/src/emu/imagedev/floppy.c
index 94d108df4db..a73463f77b7 100644
--- a/src/emu/imagedev/floppy.c
+++ b/src/emu/imagedev/floppy.c
@@ -105,6 +105,7 @@ const floppy_format_type floppy_image_device::default_floppy_formats[] = {
FLOPPY_MFI_FORMAT,
FLOPPY_MFM_FORMAT,
FLOPPY_TD0_FORMAT,
+ FLOPPY_CQM_FORMAT,
NULL
};
diff --git a/src/emu/imagedev/floppy.h b/src/emu/imagedev/floppy.h
index 36f42fad2fe..89db2e4bff6 100644
--- a/src/emu/imagedev/floppy.h
+++ b/src/emu/imagedev/floppy.h
@@ -15,6 +15,7 @@
#include "formats/ipf_dsk.h"
#include "formats/mfi_dsk.h"
#include "formats/td0_dsk.h"
+#include "formats/cqm_dsk.h"
#include "ui/imgcntrl.h"
#define MCFG_FLOPPY_DRIVE_ADD(_tag, _slot_intf, _def_slot, _formats) \
@@ -36,6 +37,7 @@
FLOPPY_MFI_FORMAT, \
FLOPPY_MFM_FORMAT, \
FLOPPY_TD0_FORMAT, \
+ FLOPPY_CQM_FORMAT, \
NULL };