mirror of
https://github.com/holub/mame
synced 2025-05-22 13:48:55 +03:00
31 lines
623 B
C++
31 lines
623 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Curt Coder
|
|
/*********************************************************************
|
|
|
|
formats/tandy2k_dsk.h
|
|
|
|
Tandy 2000 disk format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef BW2_DSK_H_
|
|
#define BW2_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class tandy2k_format : public upd765_format {
|
|
public:
|
|
tandy2k_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_TANDY_2000_FORMAT;
|
|
|
|
#endif
|