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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "thom_dsk.h"
thomson_525_format::thomson_525_format() : wd177x_format(formats)
{
}
const char *thomson_525_format::name() const noexcept
{
return "thomson_525";
}
const char *thomson_525_format::description() const noexcept
{
return "Thomson 5.25 disk image";
}
const char *thomson_525_format::extensions() const noexcept
{
return "fd";
}
const thomson_525_format::format thomson_525_format::formats[] = {
{
floppy_image::FF_525, floppy_image::SSSD, floppy_image::FM,
4000,
16, 40, 1,
128, {},
1, {},
17, 22, 12
},
{
floppy_image::FF_525, floppy_image::SSDD, floppy_image::MFM,
2000,
16, 40, 1,
256, {},
1, {},
31, 22, 44
},
{
floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
2000,
16, 40, 2,
256, {},
1, {},
31, 22, 44
},
{}
};
int thomson_525_format::get_image_offset(const format &f, int head, int track) const
{
return (track + (head ? f.track_count : 0)) * compute_track_size(f);
}
thomson_35_format::thomson_35_format() : wd177x_format(formats)
{
}
const char *thomson_35_format::name() const noexcept
{
return "thomson_35";
}
const char *thomson_35_format::description() const noexcept
{
return "Thomson 3.5 disk image";
}
const char *thomson_35_format::extensions() const noexcept
{
return "fd";
}
const thomson_35_format::format thomson_35_format::formats[] = {
{
floppy_image::FF_35, floppy_image::SSDD, floppy_image::MFM,
2000,
16, 80, 1,
256, {},
1, {},
31, 22, 44
},
{
floppy_image::FF_35, floppy_image::DSDD, floppy_image::MFM,
2000,
16, 80, 2,
256, {},
1, {},
31, 22, 44
},
{}
};
int thomson_35_format::get_image_offset(const format &f, int head, int track) const
{
return (track + (head ? f.track_count : 0)) * compute_track_size(f);
}
const thomson_525_format FLOPPY_THOMSON_525_FORMAT;
const thomson_35_format FLOPPY_THOMSON_35_FORMAT;
|