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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/*********************************************************************
formats/abcfd2_dsk.c
Scandia Metric ABC FD2 disk image formats
*********************************************************************/
#include <cassert>
#include "formats/abcfd2_dsk.h"
abc_fd2_format::abc_fd2_format() : wd177x_format(formats)
{
}
const char *abc_fd2_format::name() const
{
return "abc_fd2";
}
const char *abc_fd2_format::description() const
{
return "Scandia Metric ABC FD2 disk image";
}
const char *abc_fd2_format::extensions() const
{
return "dsk";
}
const abc_fd2_format::format abc_fd2_format::formats[] = {
// track description
// 28xff 6x00 fe 2x00 01 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 02 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 03 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 04 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 05 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 06 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 07 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 08 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 09 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0a 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0b 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0c 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0d 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0e 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 0f 00 f7 11xff 6x00 fb 128xe5 f7
// 27xff 6x00 fe 2x00 10 00 f7 11xff 6x00 fb 128xe5 f7
// 117xff
{ // 80K 5 1/4 inch single density single sided
floppy_image::FF_525, floppy_image::SSSD, floppy_image::FM,
4000, 16, 40, 1, 128, {}, 1, {}, 28, 11, 27
},
{}
};
const floppy_format_type FLOPPY_ABC_FD2_FORMAT = &floppy_image_format_creator<abc_fd2_format>;
|