mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Corrects sync lengths.
This commit is contained in:
parent
5b35c88be2
commit
45cf28e0eb
@ -74,11 +74,11 @@ using namespace Storage::Encodings;
|
|||||||
}*/
|
}*/
|
||||||
|
|
||||||
Storage::Disk::PCMSegment AppleGCR::six_and_two_sync(int length) {
|
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) {
|
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) {
|
Storage::Disk::PCMSegment AppleGCR::header(uint8_t volume, uint8_t track, uint8_t sector) {
|
||||||
|
Loading…
Reference in New Issue
Block a user