blob: 0c842a48793c20dc92a677ee38925fb392111031 (
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
33
34
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/*********************************************************************
formats/naslite_dsk.h
NASLite 1.72MB with funky interleaving format
*********************************************************************/
#ifndef MAME_FORMATS_NASLITE_DSK_H
#define MAME_FORMATS_NASLITE_DSK_H
#pragma once
#include "upd765_dsk.h"
class naslite_format : public upd765_format
{
public:
naslite_format();
virtual const char *name() const override;
virtual const char *description() const override;
virtual const char *extensions() const override;
protected:
static const format formats[];
virtual void build_sector_description(const format &d, uint8_t *sectdata, desc_s *sectors, int track, int head) const override;
};
extern const naslite_format FLOPPY_NASLITE_FORMAT;
#endif // MAME_FORMATS_NASLITE_DSK_H
|