1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-24 12:29:06 +00:00
CLK/Storage/Disk/DiskDrive.cpp
2016-07-15 20:35:19 -04:00

25 lines
518 B
C++

//
// DiskDrive.cpp
// Clock Signal
//
// Created by Thomas Harte on 14/07/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#include "DiskDrive.hpp"
using namespace Storage;
DiskDrive::DiskDrive(unsigned int clock_rate, unsigned int revolutions_per_minute) :
_clock_rate(clock_rate),
_revolutions_per_minute(revolutions_per_minute) {}
void DiskDrive::set_expected_bit_length(Time bit_length)
{
_bit_length = bit_length;
}
void DiskDrive::digital_phase_locked_loop_output_bit(int value)
{
}