mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
28 lines
697 B
C++
28 lines
697 B
C++
//
|
|
// SegmentParser.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/09/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef SegmentParser_hpp
|
|
#define SegmentParser_hpp
|
|
|
|
#include "Sector.hpp"
|
|
#include "../../Track/PCMSegment.hpp"
|
|
#include <map>
|
|
|
|
namespace Storage::Encodings::MFM {
|
|
|
|
/*!
|
|
Scans @c segment for all included sectors, returning a set that maps from location within
|
|
the segment (counted in bits from the beginning and pointing to the location the disk
|
|
had reached upon detection of the ID mark) to sector.
|
|
*/
|
|
std::map<std::size_t, Sector> sectors_from_segment(const Disk::PCMSegment &&segment, bool is_double_density);
|
|
|
|
}
|
|
|
|
#endif /* SegmentParser_hpp */
|