diff options
author | 2012-10-10 15:33:51 +0000 | |
---|---|---|
committer | 2012-10-10 15:33:51 +0000 | |
commit | 9d1aaf97ae5a4d5b2272f064fe6b6fe7df9dbf88 (patch) | |
tree | 74e3dc1e5558b42717e62f9b81cc7d7d47b90449 /src/mess/drivers/at.c | |
parent | 204b78cf00de0c3bd8b6afefa601cd26aa391c91 (diff) |
(mess) upd765: Modernize [O. Galibert]
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
Diffstat (limited to 'src/mess/drivers/at.c')
-rw-r--r-- | src/mess/drivers/at.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/at.c b/src/mess/drivers/at.c index 910c20662ad..0efcab42ed5 100644 --- a/src/mess/drivers/at.c +++ b/src/mess/drivers/at.c @@ -355,7 +355,7 @@ static SLOT_INTERFACE_START(pc_isa16_cards) SLOT_INTERFACE("svga_dm",ISA8_SVGA_CIRRUS) SLOT_INTERFACE("com", ISA8_COM) SLOT_INTERFACE("comat", ISA8_COM_AT) - SLOT_INTERFACE("fdc", ISA8_FDC) + SLOT_INTERFACE("fdc", ISA8_FDC_AT) SLOT_INTERFACE("hdc", ISA8_HDC) SLOT_INTERFACE("adlib", ISA8_ADLIB) SLOT_INTERFACE("hercules", ISA8_HERCULES) |