mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +00:00
16 lines
354 B
C++
16 lines
354 B
C++
//
|
|
// DiskImage.cpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 21/09/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "DiskImage.hpp"
|
|
|
|
using namespace Storage::Disk;
|
|
|
|
int DiskImageHolderBase::get_id_for_track_at_position(unsigned int head, unsigned int position) {
|
|
return (int)(position * get_head_count() + head);
|
|
}
|