| 47 | } |
| 48 | |
| 49 | static std::vector<bool> wrappedEncodeMfm(const Bytes& bytes) |
| 50 | { |
| 51 | std::vector<bool> bits(16); |
| 52 | unsigned cursor = 0; |
| 53 | bool lastBit = false; |
| 54 | encodeMfm(bits, cursor, bytes, lastBit); |
| 55 | return bits; |
| 56 | } |
| 57 | |
| 58 | static std::vector<bool> wrappedEncodeFm(const Bytes& bytes) |
| 59 | { |
no test coverage detected