mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00

Remaining TODO list: - take WP into account - test the amstrad, implement its observational format (edsk) using pasti as a start. Or find the legendary amstrad IPFs. Or both. - correct read track, the implementation is completely wrong. See previous for testing, it's only used in protections the check the inter-sector gaps. - shake and bake on the amstrad, protections are the best to find bugs in a fdc - add the scan id commands, but nothing seems to use them - debug the 2.88M formatting which is unreliable. Fix its IDAM/DAM gap size on formatting too (but that's not what's making it unreliable) - test all the systems that were hit, and fix what needs to be fixed. Beware that multiple problems may happen: - upd765 may be wrong - the driver may not be working - the hookup may be wrong/incomplete (bitrate selection and floppy rpm in particular) - the driver may be too limited for the new implementation (the x68k dma device does not handle non-instant dma yet for instance) - report invalid command when appropriate depending on the actual chip emulated - add the russian clones with their real names
29 lines
550 B
C++
29 lines
550 B
C++
/*********************************************************************
|
|
|
|
formats/iq151_dsk.h
|
|
|
|
iq151 format
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef IQ151_DSK_H_
|
|
#define IQ151_DSK_H_
|
|
|
|
#include "upd765_dsk.h"
|
|
|
|
class iq151_format : public upd765_format {
|
|
public:
|
|
iq151_format();
|
|
|
|
virtual const char *name() const;
|
|
virtual const char *description() const;
|
|
virtual const char *extensions() const;
|
|
|
|
private:
|
|
static const format formats[];
|
|
};
|
|
|
|
extern const floppy_format_type FLOPPY_IQ151_FORMAT;
|
|
|
|
#endif
|