summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2019-07-04 14:46:16 -0400
committer GitHub <noreply@github.com>2019-07-04 14:46:16 -0400
commit5035b85be074696f9db409ae86137b1ab7ff51a8 (patch)
treeef3fced86a11c5ecb8b3f532d825dd211bd5a317 /src/tools
parent59f3d063f07d0f609ccc21b1413c9d98d7d1c6de (diff)
parenta152d1125fde01e80ab3e9cccd475a50c22c6316 (diff)
Merge pull request #5303 from shattered/_430d642ac2
agat: basic emulation of agat9 (video, apple compat mode, LLE floppy)
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, ...)