summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/excali64_dsk.cpp
blob: 5d41c39f4e66cb6d05463b153bf231d9c8bef703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// license:BSD-3-Clause
// copyright-holders:Robbbert
/*********************************************************************

    formats/excali64_dsk.c

    Excalibur 64 disk image format

*********************************************************************/

#include <assert.h>

#include "formats/excali64_dsk.h"

excali64_format::excali64_format() : wd177x_format(formats)
{
}

const char *excali64_format::name() const
{
	return "excali64";
}

const char *excali64_format::description() const
{
	return "Excalibur 64 disk image";
}

const char *excali64_format::extensions() const
{
	return "raw";
}

// Unverified gap sizes
const excali64_format::format excali64_format::formats[] = {
	{   /*  800K 19cm double density */
		floppy_image::FF_525,  floppy_image::DSDD, floppy_image::MFM,
		2000,  5, 80, 2, 1024, {}, 1, {}, 100, 22, 84
	},
	{}
};

const floppy_format_type FLOPPY_EXCALI64_FORMAT = &floppy_image_format_creator<excali64_format>;