Add a skeleton for the AES Lanier disks.

This commit is contained in:
David Given
2019-03-02 22:40:59 +01:00
parent cf81acd8a5
commit 4eaca91a44
5 changed files with 100 additions and 4 deletions

View File

@@ -15,10 +15,10 @@ std::vector<uint8_t> decodeFmMfm(const std::vector<bool> bits)
*
* So we just need to extract all the odd bits.
*
* MFM is slightly more complicated, where the first bit of each pair can
* be either 0 or 1... but the second bit is always the data bit, and at
* this point we simply don't care what the first bit is, so decoding MFM
* uses just the same code!
* MFM and M2FM are slightly more complicated, where the first bit of each
* pair can be either 0 or 1... but the second bit is always the data bit,
* and at this point we simply don't care what the first bit is, so
* decoding MFM uses just the same code!
*/
std::vector<uint8_t> bytes;