// // MFM.hpp // Clock Signal // // Created by Thomas Harte on 18/09/2016. // Copyright © 2016 Thomas Harte. All rights reserved. // #ifndef Storage_Disk_Encodings_MFM_hpp #define Storage_Disk_Encodings_MFM_hpp #include #include #import "../Disk.hpp" namespace Storage { namespace Encodings { namespace MFM { struct Sector { uint8_t track, side, sector; std::vector data; }; std::shared_ptr GetMFMTrackWithSectors(const std::vector §ors); std::shared_ptr GetFMTrackWithSectors(const std::vector §ors); } } } #endif /* MFM_hpp */