mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
24 lines
461 B
C++
24 lines
461 B
C++
|
//
|
||
|
// MSA.cpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 03/10/2019.
|
||
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include "MSA.hpp"
|
||
|
|
||
|
using namespace Storage::Disk;
|
||
|
|
||
|
MSA::MSA(const std::string &file_name) :
|
||
|
file_(file_name) {
|
||
|
}
|
||
|
|
||
|
std::shared_ptr<::Storage::Disk::Track> MSA::get_track_at_position(::Storage::Disk::Track::Address address) {
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
HeadPosition MSA::get_maximum_head_position() {
|
||
|
return HeadPosition(10);
|
||
|
}
|