mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00
33 lines
772 B
C++
33 lines
772 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Curt Coder
|
|
/*********************************************************************
|
|
|
|
formats/naslite_dsk.h
|
|
|
|
NASLite 1.72MB with funky interleaving format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef NASLITE_DSK_H_
|
|
#define NASLITE_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class naslite_format : public upd765_format {
|
|
public:
|
|
naslite_format();
|
|
|
|
virtual const char *name() const;
|
|
virtual const char *description() const;
|
|
virtual const char *extensions() const;
|
|
|
|
protected:
|
|
static const format formats[];
|
|
|
|
virtual void build_sector_description(const format &d, UINT8 *sectdata, desc_s *sectors, int track, int head) const;
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_NASLITE_FORMAT;
|
|
|
|
#endif
|