diff options
author | 2017-05-16 09:52:31 +0200 | |
---|---|---|
committer | 2017-05-16 09:52:31 +0200 | |
commit | e2b9e11da092a28c9a26940659e148c61aaa4822 (patch) | |
tree | 401e09eeb6bbdd3bcad84c44a54360a1ab2d252f /src/tools/floptool.cpp | |
parent | dc1dcd260b8209b006e7958cf2226438ced490c2 (diff) |
Hp9845: Support for HPI floppy format (#2310)
hp9845: Support for HPI floppy format [F. Ulivi, A.Kückes]
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r-- | src/tools/floptool.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp index 190e2004ea6..a1a5f5a44d7 100644 --- a/src/tools/floptool.cpp +++ b/src/tools/floptool.cpp @@ -46,6 +46,8 @@ #include "formats/applix_dsk.h" +#include "formats/hpi_dsk.h" + static floppy_format_type floppy_formats[] = { FLOPPY_MFI_FORMAT, FLOPPY_DFI_FORMAT, @@ -75,6 +77,8 @@ static floppy_format_type floppy_formats[] = { FLOPPY_ORIC_DSK_FORMAT, FLOPPY_APPLIX_FORMAT, + + FLOPPY_HPI_FORMAT }; void CLIB_DECL ATTR_PRINTF(1,2) logerror(const char *format, ...) |