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
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
// Creation of unformatted floppy images
#ifndef MAME_FORMATS_FS_UNFORMATTED_H
#define MAME_FORMATS_FS_UNFORMATTED_H
#pragma once
#include "fsmgr.h"
class fs_unformatted : public filesystem_manager_t {
public:
enum {
FSI_NONE,
FSI_8_SSSD,
FSI_8_DSSD,
FSI_8_DSDD,
FSI_525_SSSD,
FSI_525_SSDD,
FSI_525_SSQD,
FSI_525_DSSD,
FSI_525_DSDD,
FSI_525_DSQD,
FSI_525_DSHD,
FSI_35_SSDD,
FSI_35_DSDD,
FSI_35_DSHD,
FSI_35_DSED,
FSI_3_DSDD,
FSI_3_SSDD,
};
fs_unformatted() : filesystem_manager_t() {}
virtual const char *name() const override;
virtual const char *description() const override;
static void format(u32 key, floppy_image *image);
virtual void enumerate_f(floppy_enumerator &fe, uint32_t form_factor, const std::vector<uint32_t> &variants) const override;
virtual std::unique_ptr<filesystem_t> mount(fsblk_t &blockdev) const override;
virtual bool can_format() const override;
virtual bool can_read() const override;
virtual bool can_write() const override;
virtual bool has_rsrc() const override;
};
extern const fs_unformatted FS_UNFORMATTED;
#endif
|