blob: 7c28275d0a70516a25a2a3e733553b204b802133 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// license:BSD-3-Clause
// copyright-holders:Dirk Best
/***************************************************************************
TRS-80
JV1 disk image format
***************************************************************************/
#ifndef MAME_FORMATS_TRS80_DSK_H
#define MAME_FORMATS_TRS80_DSK_H
#pragma once
#include "wd177x_dsk.h"
class jv1_format : public wd177x_format
{
public:
jv1_format();
virtual const char *name() const override;
virtual const char *description() const override;
virtual const char *extensions() const override;
protected:
virtual int get_track_dam_fm(const format &f, int head, int track) const override;
private:
static const format formats[];
};
class jv3_format : public floppy_image_format_t
{
public:
jv3_format();
virtual int identify(util::random_read &io, uint32_t form_factor, const std::vector<uint32_t> &variants) const override;
virtual bool load(util::random_read &io, uint32_t form_factor, const std::vector<uint32_t> &variants, floppy_image *image) const override;
virtual bool save(util::random_read_write &io, const std::vector<uint32_t> &variants, floppy_image *image) const override;
virtual const char *name() const override;
virtual const char *description() const override;
virtual const char *extensions() const override;
virtual bool supports_save() const override;
};
extern const jv1_format FLOPPY_JV1_FORMAT;
extern const jv3_format FLOPPY_JV3_FORMAT;
#endif // MAME_FORMATS_TRS80_DSK_H
|