diff options
author | 2019-08-06 00:14:51 +0200 | |
---|---|---|
committer | 2019-08-06 00:14:51 +0200 | |
commit | 22f96480b14e1a9f70cbf78c36cc36356d33146a (patch) | |
tree | 0d340b463a1fa6a20c3b110ba3ed3147578f7a16 /src/tools/floptool.cpp | |
parent | 6fe707a91d2b256e704c03fcb529ab162a1aecd5 (diff) |
add write support for Olivetti M20 floppy images
m20_dsk.cpp: add write support
floptool.cpp: add m20 format support
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r-- | src/tools/floptool.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp index 7c2f9d23e56..f07e6ec9ad2 100644 --- a/src/tools/floptool.cpp +++ b/src/tools/floptool.cpp @@ -53,6 +53,7 @@ #include "formats/dvk_mx_dsk.h" #include "formats/aim_dsk.h" +#include "formats/m20_dsk.h" static floppy_format_type floppy_formats[] = { @@ -96,7 +97,8 @@ static floppy_format_type floppy_formats[] = { FLOPPY_HPI_FORMAT, FLOPPY_DVK_MX_FORMAT, - FLOPPY_AIM_FORMAT + FLOPPY_AIM_FORMAT, + FLOPPY_M20_FORMAT }; void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...) |