mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00

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
38 lines
901 B
C++
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 */
|