mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
37 lines
724 B
C++
37 lines
724 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Curt Coder
|
|
/*********************************************************************
|
|
|
|
formats/d67_dsk.h
|
|
|
|
Commodore 2040 sector disk image format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef D67_DSK_H_
|
|
#define D67_DSK_H_
|
|
|
|
#include "d64_dsk.h"
|
|
|
|
class d67_format : public d64_format {
|
|
public:
|
|
d67_format();
|
|
|
|
virtual const char *name() const;
|
|
virtual const char *description() const;
|
|
virtual const char *extensions() const;
|
|
|
|
protected:
|
|
virtual int get_sectors_per_track(const format &f, int track);
|
|
|
|
static const format formats[];
|
|
|
|
static const int sectors_per_track[];
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_D67_FORMAT;
|
|
|
|
|
|
|
|
#endif
|