summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/d82_dsk.h
blob: 8919deee775c81f242342ebf7abaf17a85938403 (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
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/*********************************************************************

    formats/d82_dsk.h

    Commodore 8250/SFD-1001 sector disk image format

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

#ifndef D82_DSK_H_
#define D82_DSK_H_

#include "d80_dsk.h"

class d82_format : public d80_format {
public:
	d82_format();

	virtual const char *name() const override;
	virtual const char *description() const override;
	virtual const char *extensions() const override;

protected:
	static const format file_formats[];
};

extern const floppy_format_type FLOPPY_D82_FORMAT;



#endif