mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
24 lines
677 B
C++
24 lines
677 B
C++
//
|
|
// ImplicitSectors.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 29/09/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../../../Track/Track.hpp"
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "../../../Encodings/MFM/Encoder.hpp"
|
|
|
|
|
|
namespace Storage::Disk {
|
|
|
|
std::shared_ptr<Track> track_for_sectors(const uint8_t *source, int number_of_sectors, uint8_t track, uint8_t side, uint8_t first_sector, uint8_t size, Storage::Encodings::MFM::Density density);
|
|
void decode_sectors(const Track &track, uint8_t *destination, uint8_t first_sector, uint8_t last_sector, uint8_t sector_size, Storage::Encodings::MFM::Density density);
|
|
|
|
}
|