summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/wren_dsk.cpp
blob: 87ab652776b8ffeaaf605d0c62483c964dd37470 (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:Nigel Barnes
/***************************************************************************

    Wren Executive

    Disk image format

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

#include "wren_dsk.h"


wren_format::wren_format() : wd177x_format(formats)
{
}

const char *wren_format::name() const noexcept
{
	return "wren";
}

const char *wren_format::description() const noexcept
{
	return "Wren Executive disk image";
}

const char *wren_format::extensions() const noexcept
{
	return "img";
}

const wren_format::format wren_format::formats[] =
{
	{
		floppy_image::FF_525, floppy_image::SSDD, floppy_image::MFM,
		2000, 10, 40, 1, 512, {}, 1, {}, 20, 22, 24 // gaps unverified
	},
	{}
};


const wren_format FLOPPY_WREN_FORMAT;