1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-16 04:05:16 +00:00

Fix mark locations.

This commit is contained in:
Thomas Harte 2023-12-08 23:41:14 -05:00
parent 3c3cff568a
commit 371f109a84

View File

@ -72,7 +72,8 @@ std::shared_ptr<::Storage::Disk::Track> NIB::get_track_at_position(::Storage::Di
// NIB files leave sync bytes implicit and make no guarantees
// about overall track positioning. The attempt works by locating
// any runs of FF and marking the last five as including slip bits.
// any single run of FF that is sufficiently long and marking the last
// five as including slip bits.
std::set<size_t> sync_locations;
for(size_t index = 0; index < track_data.size(); ++index) {
// Count the number of FFs starting from here.
@ -87,8 +88,9 @@ std::shared_ptr<::Storage::Disk::Track> NIB::get_track_at_position(::Storage::Di
if(length >= 5) {
for(int c = 0; c < 5; c++) {
end = (end + track_data.size() - 1) % track_data.size();
sync_locations.insert(index);
sync_locations.insert(end);
}
// break;
}
}