mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 16:30:29 +00:00
28 lines
504 B
C++
28 lines
504 B
C++
|
//
|
||
|
// IPF.cpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 25/12/2021.
|
||
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include "IPF.hpp"
|
||
|
|
||
|
using namespace Storage::Disk;
|
||
|
|
||
|
|
||
|
IPF::IPF(const std::string &file_name) : file_(file_name) {
|
||
|
}
|
||
|
|
||
|
HeadPosition IPF::get_maximum_head_position() {
|
||
|
return HeadPosition(80); // TODO;
|
||
|
}
|
||
|
|
||
|
int IPF::get_head_count() {
|
||
|
return 2; // TODO;
|
||
|
}
|
||
|
|
||
|
std::shared_ptr<Track> IPF::get_track_at_position([[maybe_unused]] Track::Address address) {
|
||
|
return nullptr;
|
||
|
}
|