blob: d7142384e4f6d75e6a4067fe1df61f14ea499d23 (
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
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#ifndef MAME_FORMATS_ROLAND_DSK_H
#define MAME_FORMATS_ROLAND_DSK_H
#pragma once
#include "wd177x_dsk.h"
class roland_sdisk_format : public wd177x_format
{
public:
roland_sdisk_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 roland_sdisk_format FLOPPY_ROLAND_SDISK_FORMAT;
#endif // MAME_FORMATS_ROLAND_DSK_H
|