diff options
Diffstat (limited to 'src/lib/formats/juku_dsk.cpp')
-rw-r--r-- | src/lib/formats/juku_dsk.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/formats/juku_dsk.cpp b/src/lib/formats/juku_dsk.cpp index 548651a3427..46d448a2c61 100644 --- a/src/lib/formats/juku_dsk.cpp +++ b/src/lib/formats/juku_dsk.cpp @@ -1,8 +1,8 @@ // license: BSD-3-Clause -// copyright-holders: Dirk Best +// copyright-holders: Dirk Best, Märt Põder /*************************************************************************** - Juku E5101 + Juku E5101/E5104 Disk image format @@ -14,32 +14,32 @@ juku_format::juku_format() : wd177x_format(formats) { } -const char *juku_format::name() const +const char *juku_format::name() const noexcept { return "juku"; } -const char *juku_format::description() const +const char *juku_format::description() const noexcept { return "Juku disk image"; } -const char *juku_format::extensions() const +const char *juku_format::extensions() const noexcept { return "juk"; } const juku_format::format juku_format::formats[] = { - { // 800k 5 1/4 inch double density single sided - gaps unverified (CP/M) - floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM, + { // 386k 5.25" double density single sided - gaps unverified (CP/M) + floppy_image::FF_525, floppy_image::SSDD, floppy_image::MFM, 2000, 10, 80, 1, 512, {}, 1, {}, 32, 22, 35 }, - { // 800k 5 1/4 inch double density double sided - gaps unverified (CP/M) + { // 786k 5.25" double density "outout" double sided - gaps unverified (CP/M) floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM, 2000, 10, 80, 2, 512, {}, 1, {}, 32, 22, 35 }, {} }; -const floppy_format_type FLOPPY_JUKU_FORMAT = &floppy_image_format_creator<juku_format>; +const juku_format FLOPPY_JUKU_FORMAT; |