1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-12-02 21:17:43 +00:00

Improves documentation.

This commit is contained in:
Thomas Harte
2018-05-04 18:02:55 -04:00
parent e3b4aebf1a
commit 0dece80b5d
2 changed files with 26 additions and 1 deletions

View File

@@ -33,7 +33,8 @@ struct Sector {
};
Address address;
uint8_t size = 0;
uint8_t size = 0; // Size is stored in ordinary MFM form — the number of bytes included in this sector
// is 2^(7 + size), or 128 << size.
// Multiple samplings of the underlying data are accepted, to allow weak and fuzzy data to be communicated.
std::vector<std::vector<uint8_t>> samples;