blob: 2830837c80e6688811c5591264edafa47d4968d4 (
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
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/*********************************************************************
formats/tibdd001_dsk.h
TIB Disc Drive DD-001 disk images
*********************************************************************/
#ifndef MAME_FORMATS_TIB_DD_001_DSK_H
#define MAME_FORMATS_TIB_DD_001_DSK_H
#pragma once
#include "flopimg.h"
#include "upd765_dsk.h"
class tib_dd_001_format : public upd765_format
{
public:
tib_dd_001_format();
virtual const char *name() const noexcept override;
virtual const char *description() const noexcept override;
virtual const char *extensions() const noexcept override;
private:
static const format formats[];
};
extern const tib_dd_001_format FLOPPY_TIB_DD_001_FORMAT;
#endif // MAME_FORMATS_TIB_DD_001_DSK_H
|