summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/floptool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r--src/tools/floptool.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp
index f07e6ec9ad2..1953e7b0538 100644
--- a/src/tools/floptool.cpp
+++ b/src/tools/floptool.cpp
@@ -55,6 +55,9 @@
#include "formats/aim_dsk.h"
#include "formats/m20_dsk.h"
+#include "formats/flex_dsk.h"
+#include "formats/uniflex_dsk.h"
+
static floppy_format_type floppy_formats[] = {
FLOPPY_MFI_FORMAT,
@@ -98,7 +101,10 @@ static floppy_format_type floppy_formats[] = {
FLOPPY_DVK_MX_FORMAT,
FLOPPY_AIM_FORMAT,
- FLOPPY_M20_FORMAT
+ FLOPPY_M20_FORMAT,
+
+ FLOPPY_FLEX_FORMAT,
+ FLOPPY_UNIFLEX_FORMAT
};
void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...)