diff options
author | 2019-07-01 23:56:11 +0300 | |
---|---|---|
committer | 2019-07-02 01:13:38 +0300 | |
commit | a152d1125fde01e80ab3e9cccd475a50c22c6316 (patch) | |
tree | 1649ac05dc5a9b75a5458c7662d87d28cc812bae /src/tools/floptool.cpp | |
parent | 35af77fcfad6db45904b555e8bd2d2a97fc51800 (diff) |
agat: basic emulation of agat9 (video, apple compat mode, LLE floppy)
also included: MX floppy format (nw)
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r-- | src/tools/floptool.cpp | 9 |
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, ...) |