diff options
Diffstat (limited to 'src/lib/formats/guab_dsk.c')
-rw-r--r-- | src/lib/formats/guab_dsk.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/lib/formats/guab_dsk.c b/src/lib/formats/guab_dsk.c new file mode 100644 index 00000000000..4c92362251a --- /dev/null +++ b/src/lib/formats/guab_dsk.c @@ -0,0 +1,42 @@ +// license:GPL-2.0+ +// copyright-holders:Dirk Best +/*************************************************************************** + + JPM Give us a Break + + Disk image format + +***************************************************************************/ + +#include "guab_dsk.h" + +guab_format::guab_format() : wd177x_format(formats) +{ +} + +const char *guab_format::name() const +{ + return "guab"; +} + +const char *guab_format::description() const +{ + return "JPM Give us a Break disk image"; +} + +const char *guab_format::extensions() const +{ + return "dsk"; +} + +// gap sizes unverified +const guab_format::format guab_format::formats[] = +{ + { + floppy_image::FF_35, floppy_image::DSDD, floppy_image::MFM, + 2000, 18, 80, 2, 256, {}, 0, {}, 80, 22, 24 + }, + {} +}; + +const floppy_format_type FLOPPY_GUAB_FORMAT = &floppy_image_format_creator<guab_format>; |