mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-17 10:06:21 +00:00
Corrects typo
parent
d6c7e203c8
commit
ab611ea415
@ -131,4 +131,4 @@ The most common type of Apple disk image — variously DSK, DO, PO and other ext
|
||||
|
||||
Therefore the proper physical interpretation of that sort of disk image is tightly coupled to the internals of the specific software that created it.
|
||||
|
||||
Specifically, on-disk sectors 0 to 15 of a DOS 3.3 image (ordinarily having the extension DSK or DO) should contain the contents of the image sectors at offsets: `0, 7, 14, 6, 13, 5, 12, 4, 11, 3, 10, 2, 9, 1, 8, 15` — i.e. increase by 7 at each step, and take the modulo by 15 if out of bounds. The on-disk sectors 0 to 15 of a Pro-DOS image (ordinarily PO) should contain the sectors at offsets `0, 8, 1, 9, 2, 10, 3, 11, 4, 12, 5, 13, 6, 14, 7, 15` — i.e. increase by 8 each step, and take the module by 15 if out of bounds.
|
||||
Specifically, on-disk sectors 0 to 15 of a DOS 3.3 image (ordinarily having the extension DSK or DO) should contain the contents of the image sectors at offsets: `0, 7, 14, 6, 13, 5, 12, 4, 11, 3, 10, 2, 9, 1, 8, 15` — i.e. increase by 7 at each step, and take the modulo by 15 if out of bounds. The on-disk sectors 0 to 15 of a Pro-DOS image (ordinarily PO) should contain the sectors at offsets `0, 8, 1, 9, 2, 10, 3, 11, 4, 12, 5, 13, 6, 14, 7, 15` — i.e. increase by 8 each step, and take the modulo by 15 if out of bounds.
|
Loading…
Reference in New Issue
Block a user