mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
34 lines
659 B
C++
34 lines
659 B
C++
/*********************************************************************
|
|
|
|
formats/pc98_dsk.h
|
|
|
|
PC disk images
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef PC98_DSK_H
|
|
#define PC98_DSK_H
|
|
|
|
#include "flopimg.h"
|
|
#include "upd765_dsk.h"
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
class pc98_format : public upd765_format
|
|
{
|
|
public:
|
|
pc98_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_PC98_FORMAT;
|
|
|
|
#endif /* PC_DSK_H */
|