mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
52 lines
889 B
C++
52 lines
889 B
C++
//
|
|
// CPM.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/08/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_Disk_Parsers_CPM_hpp
|
|
#define Storage_Disk_Parsers_CPM_hpp
|
|
|
|
#include "../Disk.hpp"
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Storage {
|
|
namespace Disk {
|
|
namespace CPM {
|
|
|
|
struct ParameterBlock {
|
|
int sectors_per_track;
|
|
int tracks;
|
|
int block_size;
|
|
int first_sector;
|
|
uint16_t catalogue_allocation_bitmap;
|
|
int reserved_tracks;
|
|
};
|
|
|
|
struct File {
|
|
uint8_t user_number;
|
|
std::string name;
|
|
std::string type;
|
|
bool read_only;
|
|
bool system;
|
|
std::vector<uint8_t> data;
|
|
};
|
|
|
|
struct Catalogue {
|
|
std::vector<File> files;
|
|
};
|
|
|
|
std::unique_ptr<Catalogue> GetCatalogue(const std::shared_ptr<Storage::Disk::Disk> &disk, const ParameterBlock ¶meters);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Storage_Disk_Parsers_CPM_hpp */
|