summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/atom_dsk.h
blob: 03a4a0688f30272dee960904a9a2a86e9e7fcb8c (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
// license:BSD-3-Clause
// copyright-holders:Carl
#ifndef __ATOM_DSK_H__
#define __ATOM_DSK_H__

#include "flopimg.h"
#include "wd177x_dsk.h"

class atom_format : public wd177x_format
{
public:
	atom_format();

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

private:
	static const format formats[];
};

extern const floppy_format_type FLOPPY_ATOM_FORMAT;

#endif