summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/juku_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/juku_dsk.h')
-rw-r--r--src/lib/formats/juku_dsk.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/formats/juku_dsk.h b/src/lib/formats/juku_dsk.h
new file mode 100644
index 00000000000..73c33e952f4
--- /dev/null
+++ b/src/lib/formats/juku_dsk.h
@@ -0,0 +1,32 @@
+// license: BSD-3-Clause
+// copyright-holders: Dirk Best
+/***************************************************************************
+
+ Juku E5101
+
+ Disk image format
+
+***************************************************************************/
+#ifndef MAME_FORMATS_JUKU_DSK_H
+#define MAME_FORMATS_JUKU_DSK_H
+
+#pragma once
+
+#include "wd177x_dsk.h"
+
+class juku_format : public wd177x_format
+{
+public:
+ juku_format();
+
+ virtual const char *name() const override;
+ virtual const char *description() const override;
+ virtual const char *extensions() const override;
+
+private:
+ static const format formats[];
+};
+
+extern const floppy_format_type FLOPPY_JUKU_FORMAT;
+
+#endif // MAME_FORMATS_JUKU_DSK_H