blob: e9ab87488f0f46a86b0398f41ee44dfc2f8e2958 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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
|