summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/ds9_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/ds9_dsk.h')
-rw-r--r--src/lib/formats/ds9_dsk.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/lib/formats/ds9_dsk.h b/src/lib/formats/ds9_dsk.h
new file mode 100644
index 00000000000..540c49a7ce7
--- /dev/null
+++ b/src/lib/formats/ds9_dsk.h
@@ -0,0 +1,38 @@
+// license:BSD-3-Clause
+// copyright-holders:Sergey Svishchev
+/*********************************************************************
+
+ formats/ds9_dsk.h
+
+*********************************************************************/
+
+#ifndef DS9_DSK_H_
+#define DS9_DSK_H_
+
+#include "flopimg.h"
+#include "formats/basicdsk.h"
+
+LEGACY_FLOPPY_OPTIONS_EXTERN(ds9);
+
+class ds9_format : public floppy_image_format_t
+{
+public:
+ ds9_format();
+
+ virtual int identify(io_generic *io, uint32_t form_factor) override;
+ virtual bool load(io_generic *io, uint32_t form_factor, floppy_image *image) override;
+
+ virtual const char *name() const override;
+ virtual const char *description() const override;
+ virtual const char *extensions() const override;
+ virtual bool supports_save() const override { return false; }
+
+ static const desc_e ds9_desc[];
+
+private:
+ void find_size(io_generic *io, uint8_t &track_count, uint8_t &head_count, uint8_t &sector_count);
+};
+
+extern const floppy_format_type FLOPPY_DS9_FORMAT;
+
+#endif /* DS9_DSK_H_ */