summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/d71_dsk.h
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2014-02-03 15:59:54 +0000
committer Curt Coder <curtcoder@mail.com>2014-02-03 15:59:54 +0000
commitb10cef380b043351149632cd53c67bf1e4f0bd00 (patch)
treedca9c763f1b07d1d51b2173d12fb6f6aab532e9c /src/lib/formats/d71_dsk.h
parent44add8d8efd1fe139ae490ccd2c91b1a86dad65a (diff)
(MESS) Refactored the Commodore 1541/1551/1571/2031 disk drives to use the modern floppy system. [Curt Coder]
Diffstat (limited to 'src/lib/formats/d71_dsk.h')
-rw-r--r--src/lib/formats/d71_dsk.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/formats/d71_dsk.h b/src/lib/formats/d71_dsk.h
new file mode 100644
index 00000000000..8f24c5ec315
--- /dev/null
+++ b/src/lib/formats/d71_dsk.h
@@ -0,0 +1,32 @@
+// license:BSD-3-Clause
+// copyright-holders:Curt Coder
+/*********************************************************************
+
+ formats/d71_dsk.h
+
+ Commodore 2040 sector disk image format
+
+*********************************************************************/
+
+#ifndef D71_DSK_H_
+#define D71_DSK_H_
+
+#include "d64_dsk.h"
+
+class d71_format : public d64_format {
+public:
+ d71_format();
+
+ virtual const char *name() const;
+ virtual const char *description() const;
+ virtual const char *extensions() const;
+
+protected:
+ static const format formats[];
+};
+
+extern const floppy_format_type FLOPPY_D71_FORMAT;
+
+
+
+#endif