mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-15 14:27:29 +00:00
Gaps appear to contain pre-MFM data (?)
This commit is contained in:
@@ -304,6 +304,7 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
|
||||
segment.data.resize(length);
|
||||
} break;*/
|
||||
|
||||
case Type::Gap:
|
||||
case Type::Data: {
|
||||
printf("Handling data type %d, length %zu bits\n", int(type), length);
|
||||
auto &segment = segments.emplace_back();
|
||||
@@ -322,7 +323,6 @@ std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Addres
|
||||
segment.data.resize(length * 2);
|
||||
} break;
|
||||
|
||||
case Type::Gap:
|
||||
case Type::Sync:
|
||||
case Type::Raw: {
|
||||
printf("Handling data type %d, length %zu bits\n", int(type), length);
|
||||
|
Reference in New Issue
Block a user