mirror of
https://github.com/holub/mame
synced 2025-05-19 20:29:09 +03:00
31 lines
639 B
C++
31 lines
639 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Olivier Galibert
|
|
/*********************************************************************
|
|
|
|
formats/nanos_dsk.h
|
|
|
|
nanos format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef NANOS_DSK_H_
|
|
#define NANOS_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class nanos_format : public upd765_format {
|
|
public:
|
|
nanos_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_NANOS_FORMAT;
|
|
|
|
#endif
|