1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Corrects sync lengths.

This commit is contained in:
Thomas Harte 2018-04-28 15:48:49 -04:00
parent 5b35c88be2
commit 45cf28e0eb

View File

@ -74,11 +74,11 @@ using namespace Storage::Encodings;
}*/
Storage::Disk::PCMSegment AppleGCR::six_and_two_sync(int length) {
return sync(length, 9);
return sync(length, 10);
}
Storage::Disk::PCMSegment AppleGCR::five_and_three_sync(int length) {
return sync(length, 10);
return sync(length, 9);
}
Storage::Disk::PCMSegment AppleGCR::header(uint8_t volume, uint8_t track, uint8_t sector) {