summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/vector06_dsk.cpp
blob: 6601d84e7c71d2d9b27962c4774d5f179377a8f4 (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
44
45
46
47
48
// license:GPL-2.0+
// copyright-holders:Dirk Best
/***************************************************************************

    Vector 06

    Disk image format

    TODO:
    - Gap sizes

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

#include "vector06_dsk.h"

vector06_format::vector06_format() : wd177x_format(formats)
{
}

const char *vector06_format::name() const
{
	return "vector06";
}

const char *vector06_format::description() const
{
	return "Vector 06 disk image";
}

const char *vector06_format::extensions() const
{
	return "fdd";
}

const vector06_format::format vector06_format::formats[] =
{
	{
		floppy_image::FF_525, floppy_image::DSQD, floppy_image::MFM,
		2000, 5, 82, 2, 1024, {}, 1, {}, 80, 22, 24
	},
	{
		floppy_image::FF_525, floppy_image::DSQD, floppy_image::MFM,
		2000, 5, 80, 2, 1024, {}, 1, {}, 80, 22, 24
	},
	{}
};

const floppy_format_type FLOPPY_VECTOR06_FORMAT = &floppy_image_format_creator<vector06_format>;