mirror of
https://github.com/holub/mame
synced 2025-05-24 06:30:04 +03:00
31 lines
641 B
C++
31 lines
641 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Olivier Galibert
|
|
/*********************************************************************
|
|
|
|
formats/bw12_dsk.h
|
|
|
|
Bonwell 12/14 format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef BW12_DSK_H_
|
|
#define BW12_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class bw12_format : public upd765_format {
|
|
public:
|
|
bw12_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_BW12_FORMAT;
|
|
|
|
#endif
|