mame/src/lib/formats/xdf_dsk.h
Miodrag Milanovic e25c13f253 Clean-ups and version bump
note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
2012-09-17 06:49:13 +00:00

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