blob: 540c49a7ce78c7b0c8cf6eabb3baa5be76f18cf4 (
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
|
// license:BSD-3-Clause
// copyright-holders:Sergey Svishchev
/*********************************************************************
formats/ds9_dsk.h
*********************************************************************/
#ifndef DS9_DSK_H_
#define DS9_DSK_H_
#include "flopimg.h"
#include "formats/basicdsk.h"
LEGACY_FLOPPY_OPTIONS_EXTERN(ds9);
class ds9_format : public floppy_image_format_t
{
public:
ds9_format();
virtual int identify(io_generic *io, uint32_t form_factor) override;
virtual bool load(io_generic *io, uint32_t form_factor, floppy_image *image) override;
virtual const char *name() const override;
virtual const char *description() const override;
virtual const char *extensions() const override;
virtual bool supports_save() const override { return false; }
static const desc_e ds9_desc[];
private:
void find_size(io_generic *io, uint8_t &track_count, uint8_t &head_count, uint8_t §or_count);
};
extern const floppy_format_type FLOPPY_DS9_FORMAT;
#endif /* DS9_DSK_H_ */
|