// // CPM.hpp // Clock Signal // // Created by Thomas Harte on 10/08/2017. // Copyright 2017 Thomas Harte. All rights reserved. // #ifndef Storage_Disk_Parsers_CPM_hpp #define Storage_Disk_Parsers_CPM_hpp #include "../Disk.hpp" #include #include #include #include namespace Storage { namespace Disk { namespace CPM { struct ParameterBlock { int sectors_per_track; int tracks; int block_size; int first_sector; uint16_t catalogue_allocation_bitmap; int reserved_tracks; }; struct File { uint8_t user_number; std::string name; std::string type; bool read_only; bool system; std::vector data; }; struct Catalogue { std::vector files; }; std::unique_ptr GetCatalogue(const std::shared_ptr &disk, const ParameterBlock ¶meters); } } } #endif /* Storage_Disk_Parsers_CPM_hpp */