summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/floptool.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp
index a5ebceb8925..7c2f9d23e56 100644
--- a/src/tools/floptool.cpp
+++ b/src/tools/floptool.cpp
@@ -51,6 +51,10 @@
#include "formats/hpi_dsk.h"
+#include "formats/dvk_mx_dsk.h"
+#include "formats/aim_dsk.h"
+
+
static floppy_format_type floppy_formats[] = {
FLOPPY_MFI_FORMAT,
FLOPPY_DFI_FORMAT,
@@ -89,7 +93,10 @@ static floppy_format_type floppy_formats[] = {
FLOPPY_APPLIX_FORMAT,
- FLOPPY_HPI_FORMAT
+ FLOPPY_HPI_FORMAT,
+
+ FLOPPY_DVK_MX_FORMAT,
+ FLOPPY_AIM_FORMAT
};
void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...)