summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/roland_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/roland_dsk.h')
-rw-r--r--src/lib/formats/roland_dsk.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/lib/formats/roland_dsk.h b/src/lib/formats/roland_dsk.h
new file mode 100644
index 00000000000..d7142384e4f
--- /dev/null
+++ b/src/lib/formats/roland_dsk.h
@@ -0,0 +1,27 @@
+// license:BSD-3-Clause
+// copyright-holders:Olivier Galibert
+
+#ifndef MAME_FORMATS_ROLAND_DSK_H
+#define MAME_FORMATS_ROLAND_DSK_H
+
+#pragma once
+
+#include "wd177x_dsk.h"
+
+class roland_sdisk_format : public wd177x_format
+{
+public:
+ roland_sdisk_format();
+
+ virtual const char *name() const noexcept override;
+ virtual const char *description() const noexcept override;
+ virtual const char *extensions() const noexcept override;
+
+private:
+ static const format formats[];
+};
+
+
+extern const roland_sdisk_format FLOPPY_ROLAND_SDISK_FORMAT;
+
+#endif // MAME_FORMATS_ROLAND_DSK_H