mirror of
https://github.com/TomHarte/CLK.git
synced 2026-01-26 21:16:19 +00:00
38 lines
701 B
C++
38 lines
701 B
C++
//
|
|
// ImplicitSectors.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 29/09/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Storage/Disk/Track/Track.hpp"
|
|
#include "Storage/Disk/Encodings/MFM/Encoder.hpp"
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace Storage::Disk {
|
|
|
|
std::unique_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
|
|
);
|
|
|
|
}
|