mirror of
https://github.com/holub/mame
synced 2025-05-19 20:29:09 +03:00
25 lines
462 B
C++
25 lines
462 B
C++
// 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
|