mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
29 lines
549 B
C++
29 lines
549 B
C++
/*********************************************************************
|
|
|
|
formats/xdf_dsk.h
|
|
|
|
x68k bare-bones formats
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef XDF_DSK_H_
|
|
#define XDF_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class xdf_format : public upd765_format {
|
|
public:
|
|
xdf_format();
|
|
|
|
virtual const char *name() const;
|
|
virtual const char *description() const;
|
|
virtual const char *extensions() const;
|
|
|
|
private:
|
|
static const format formats[];
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_XDF_FORMAT;
|
|
|
|
#endif
|