mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
33 lines
705 B
C++
33 lines
705 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Olivier Galibert
|
|
/*********************************************************************
|
|
|
|
msx_dsk.h
|
|
|
|
MSX disk images
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef MSX_DSK_H
|
|
#define MSX_DSK_H
|
|
|
|
//#include "wd177x_dsk.h"
|
|
#include "upd765_dsk.h"
|
|
|
|
//class msx_format : public wd177x_format {
|
|
class msx_format: public upd765_format {
|
|
public:
|
|
msx_format();
|
|
|
|
virtual const char *name() const override;
|
|
virtual const char *description() const override;
|
|
virtual const char *extensions() const override;
|
|
|
|
private:
|
|
static const format formats[];
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_MSX_FORMAT;
|
|
|
|
#endif /* MSX_DSK_H */
|