summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/floptool.cpp
diff options
context:
space:
mode:
author 68bit <info@68bit.org>2020-07-02 22:49:51 +1000
committer 68bit <info@68bit.org>2020-07-03 00:16:35 +1000
commitd5187fe74c5e7e9ab93d58f4fdd3fd2f7b13ad60 (patch)
treed849590b45df9495cd003c6cd835c6cf3a90ea0e /src/tools/floptool.cpp
parent3a2bf1c61bcef3384e8f2439392f7a698e68fb71 (diff)
MDOS disk format support
Motorola DOS, used on the EXORciser etc.
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r--src/tools/floptool.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp
index 6102304bbf3..364e74af68b 100644
--- a/src/tools/floptool.cpp
+++ b/src/tools/floptool.cpp
@@ -62,6 +62,8 @@
#include "formats/flex_dsk.h"
#include "formats/uniflex_dsk.h"
+#include "formats/mdos_dsk.h"
+
static floppy_format_type floppy_formats[] = {
FLOPPY_MFI_FORMAT,
@@ -112,7 +114,9 @@ static floppy_format_type floppy_formats[] = {
FLOPPY_OS9_FORMAT,
FLOPPY_FLEX_FORMAT,
- FLOPPY_UNIFLEX_FORMAT
+ FLOPPY_UNIFLEX_FORMAT,
+
+ FLOPPY_MDOS_FORMAT
};
void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...)