diff options
author | 2012-12-14 11:43:56 +0000 | |
---|---|---|
committer | 2012-12-14 11:43:56 +0000 | |
commit | 3a55d70dbbfadca19629b96269c49ce7921d948c (patch) | |
tree | f9e5d325bb1c191dfee6273ec0a90be5c18b096d /src/lib | |
parent | e35c0250330bd101066abb8642e5e105ec7f6352 (diff) |
Made Orion use new floppy system (no whatsnew)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/formats/smx_dsk.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/formats/smx_dsk.c b/src/lib/formats/smx_dsk.c index 98057aef107..ecb1370b506 100644 --- a/src/lib/formats/smx_dsk.c +++ b/src/lib/formats/smx_dsk.c @@ -53,21 +53,25 @@ const char *smx_format::name() const const char *smx_format::description() const { - return "Specialist MX disk image"; + return "Specialist MX/Orion/B2M disk image"; } const char *smx_format::extensions() const { - return "odi,cpm"; + return "odi,cpm,img"; } // Unverified gap sizes const smx_format::format smx_format::formats[] = { - { // 720K 5.25 inch + { // Specialist MX/Orion/B2M disk image floppy_image::FF_525, floppy_image::DSQD, 2000, 5, 80, 2, 1024, {}, 1, {}, 100, 22, 20 }, + { // Lucksian Key Orion disk image + floppy_image::FF_525, floppy_image::DSQD, + 2000, 9, 80, 2, 512, {}, 1, {}, 100, 22, 20 + }, {} }; |