diff options
author | 2024-02-13 20:58:17 +0100 | |
---|---|---|
committer | 2024-02-13 20:58:17 +0100 | |
commit | b3c50c13f9b2bcb786919681f583665e542625d4 (patch) | |
tree | 15d63f218c63abfcde1fa1955c36a5020ed79344 /src/lib/formats/idpart_dsk.cpp | |
parent | babb569e6e614482b4b8d4505b39946340293776 (diff) |
sfrj/idpartner.cpp - fixed floppy daisy chain
lib/formats/idpart_dsk.cpp - added Iskra Delta Partner floppy image format
Diffstat (limited to 'src/lib/formats/idpart_dsk.cpp')
-rw-r--r-- | src/lib/formats/idpart_dsk.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/lib/formats/idpart_dsk.cpp b/src/lib/formats/idpart_dsk.cpp new file mode 100644 index 00000000000..c89b86f891b --- /dev/null +++ b/src/lib/formats/idpart_dsk.cpp @@ -0,0 +1,45 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic +/********************************************************************* + + formats/idpart_dsk.cpp + + Iskra Delta Partner format + +*********************************************************************/ + +#include "formats/idpart_dsk.h" + +idpart_format::idpart_format() : upd765_format(formats) +{ +} + +const char *idpart_format::name() const noexcept +{ + return "idpart"; +} + +const char *idpart_format::description() const noexcept +{ + return "Iskra Delta Partner disk image"; +} + +const char *idpart_format::extensions() const noexcept +{ + return "img"; +} + +// Unverified gap sizes. +const idpart_format::format idpart_format::formats[] = { + { + floppy_image::FF_525, floppy_image::DSHD, floppy_image::MFM, + 1200, + 18, 73, 2, + 256, {}, + 1, {}, + 80, 50, 22, 80 + }, + {} +}; + +const idpart_format FLOPPY_IDPART_FORMAT; |