diff options
author | 2017-07-11 00:15:06 +0200 | |
---|---|---|
committer | 2017-07-11 00:15:06 +0200 | |
commit | 9bff063d9d43c67e21c6e080d2d627bec6de8d90 (patch) | |
tree | 630c5278461836ae2b15aad59a82212518e5b8c7 /src/lib/formats/itt3030_dsk.cpp | |
parent | d14ed3d88c78f6a0948abc4239920ebc1d54bf5a (diff) |
Corrected ITT3030 70 track drive type and added 35 drive type and format definition. [helwie44 and rfka01]
Diffstat (limited to 'src/lib/formats/itt3030_dsk.cpp')
-rw-r--r-- | src/lib/formats/itt3030_dsk.cpp | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/lib/formats/itt3030_dsk.cpp b/src/lib/formats/itt3030_dsk.cpp index 7fed1bf3505..1f2e088b13c 100644 --- a/src/lib/formats/itt3030_dsk.cpp +++ b/src/lib/formats/itt3030_dsk.cpp @@ -36,10 +36,21 @@ const char *itt3030_format::extensions() const // gap info is a total guess const itt3030_format::format itt3030_format::formats[] = { { /* 5,25" DS DD 70 tracks 16 SPT 256 bytes/sector */ - floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM, - 2000, 16, 70, 2, 256, {}, 1, {}, 32, 22, 31 + floppy_image::FF_525, floppy_image::DSQD, floppy_image::MFM, + 2000, + 16, 70, 2, + 256, {}, + 1, {}, + 32, 22, 31 }, - {} + {/* 5,25" DS DD 35 tracks 16 SPT 256 bytes/sector */ + floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM, + 2000, + 16, 35, 2, + 256, {}, + 1, {}, + 32, 22, 31 + } }; |