mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Add ruler for track numbers.
This commit is contained in:
@@ -119,7 +119,18 @@ void ImageWriter::printMap(const SectorSet& sectors)
|
||||
int badSectors = 0;
|
||||
int missingSectors = 0;
|
||||
int totalSectors = 0;
|
||||
std::cout << "H.SS Tracks --->" << std::endl;
|
||||
|
||||
std::cout << " Tracks -> 1 2 3 ";
|
||||
if (numCylinders > 40) {
|
||||
std::cout << "4 5 6 7 8";
|
||||
}
|
||||
std::cout << std::endl;
|
||||
std::cout << "H.SS 0123456789012345678901234567890123456789";
|
||||
if (numCylinders > 40) {
|
||||
std::cout << "01234567890123456789012345678901234567890123";
|
||||
}
|
||||
std::cout << std::endl;
|
||||
|
||||
for (int head = 0; head < numHeads; head++)
|
||||
{
|
||||
for (int sectorId = 0; sectorId < numSectors; sectorId++)
|
||||
|
||||
Reference in New Issue
Block a user