summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/rc759_dsk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/rc759_dsk.cpp')
-rw-r--r--src/lib/formats/rc759_dsk.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/lib/formats/rc759_dsk.cpp b/src/lib/formats/rc759_dsk.cpp
new file mode 100644
index 00000000000..537803d1993
--- /dev/null
+++ b/src/lib/formats/rc759_dsk.cpp
@@ -0,0 +1,41 @@
+// license: BSD-3-Clause
+// copyright-holders: Dirk Best
+/***************************************************************************
+
+ Regnecentralen RC759 Piccoline
+
+ Disk image format
+
+***************************************************************************/
+
+#include "rc759_dsk.h"
+
+rc759_format::rc759_format() : wd177x_format(formats)
+{
+}
+
+const char *rc759_format::name() const noexcept
+{
+ return "rc759";
+}
+
+const char *rc759_format::description() const noexcept
+{
+ return "RC759 disk image";
+}
+
+const char *rc759_format::extensions() const noexcept
+{
+ return "img";
+}
+
+const rc759_format::format rc759_format::formats[] =
+{
+ {
+ floppy_image::FF_525, floppy_image::DSHD, floppy_image::MFM,
+ 1200, 8, 77, 2, 1024, {}, 1, {}, 50, 22, 54
+ },
+ {}
+};
+
+const rc759_format FLOPPY_RC759_FORMAT;