mame/src/lib/formats/dim_dsk.h
cracyc 98652587d8 dim_dsk: add modern support [Carl]
x68k: make floppies work again [Carl]
hd63450: make it easier for external drq support (nw)
---
esq5505 is the only other user of the hd63450, needs to be tested
2013-10-14 17:44:51 +00:00

38 lines
901 B
C++

/*********************************************************************
formats/dim_dsk.h
DIM disk images
*********************************************************************/
#ifndef DIM_DSK_H
#define DIM_DSK_H
#include "flopimg.h"
/**************************************************************************/
FLOPPY_IDENTIFY(dim_dsk_identify);
FLOPPY_CONSTRUCT(dim_dsk_construct);
class dim_format : public floppy_image_format_t
{
public:
dim_format();
virtual int identify(io_generic *io, UINT32 form_factor);
virtual bool load(io_generic *io, UINT32 form_factor, floppy_image *image);
virtual bool save(io_generic *io, floppy_image *image);
virtual const char *name() const;
virtual const char *description() const;
virtual const char *extensions() const;
virtual bool supports_save() const;
};
extern const floppy_format_type FLOPPY_DIM_FORMAT;
#endif /* DIM_DSK_H */