From dde58faaf16ef07faa544c073315b272267b5ef1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 2 Dec 2023 00:00:57 -0500 Subject: [PATCH] Add additional 8-sector format. --- Storage/Disk/DiskImage/Formats/PCBooter.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Storage/Disk/DiskImage/Formats/PCBooter.cpp b/Storage/Disk/DiskImage/Formats/PCBooter.cpp index 617ec16c8..54e14a8ea 100644 --- a/Storage/Disk/DiskImage/Formats/PCBooter.cpp +++ b/Storage/Disk/DiskImage/Formats/PCBooter.cpp @@ -28,6 +28,12 @@ PCBooter::PCBooter(const std::string &file_name) : sector_count_ = 8; break; + case 512 * 8 * 40 * 2: + head_count_ = 2; + track_count_ = 40; + sector_count_ = 8; + break; + case 512 * 9 * 40: head_count_ = 1; track_count_ = 40;