mirror of
https://github.com/holub/mame
synced 2025-05-21 05:08:54 +03:00

Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
34 lines
824 B
C++
34 lines
824 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Fabio Priuli
|
|
/*********************************************************************
|
|
|
|
formats/dcp_dsk.h
|
|
|
|
PC98 DCP & DCU disk images
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef DCP_DSK_H
|
|
#define DCP_DSK_H
|
|
|
|
#include "flopimg.h"
|
|
|
|
|
|
class dcp_format : public floppy_image_format_t
|
|
{
|
|
public:
|
|
dcp_format();
|
|
|
|
virtual int identify(io_generic *io, uint32_t form_factor) override;
|
|
virtual bool load(io_generic *io, uint32_t form_factor, floppy_image *image) override;
|
|
|
|
virtual const char *name() const override;
|
|
virtual const char *description() const override;
|
|
virtual const char *extensions() const override;
|
|
virtual bool supports_save() const override;
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_DCP_FORMAT;
|
|
|
|
#endif /* PC98DCP_DSK_H */
|