mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00
32 lines
714 B
C++
32 lines
714 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Olivier Galibert
|
|
/*********************************************************************
|
|
|
|
formats/apollo_dsk.h
|
|
|
|
apollo format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef APOLLO_DSK_H_
|
|
#define APOLLO_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class apollo_format : public upd765_format {
|
|
public:
|
|
apollo_format();
|
|
|
|
virtual int identify(io_generic *io, UINT32 form_factor) override;
|
|
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_APOLLO_FORMAT;
|
|
|
|
#endif
|