summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/excali64_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/excali64_dsk.h')
-rw-r--r--src/lib/formats/excali64_dsk.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib/formats/excali64_dsk.h b/src/lib/formats/excali64_dsk.h
new file mode 100644
index 00000000000..37b62265c1c
--- /dev/null
+++ b/src/lib/formats/excali64_dsk.h
@@ -0,0 +1,28 @@
+/*********************************************************************
+
+ formats/excali64_dsk.h
+
+ Excalibur 64 disk image format
+
+*********************************************************************/
+
+#ifndef EXCALI64_DSK_H_
+#define EXCALI64_DSK_H_
+
+#include "wd177x_dsk.h"
+
+class excali64_format : public wd177x_format {
+public:
+ excali64_format();
+
+ virtual const char *name() const;
+ virtual const char *description() const;
+ virtual const char *extensions() const;
+
+private:
+ static const format formats[];
+};
+
+extern const floppy_format_type FLOPPY_EXCALI64_FORMAT;
+
+#endif