mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
31 lines
598 B
C++
31 lines
598 B
C++
//
|
|
// DAT.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 31/01/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef MassStorage_DAT_hpp
|
|
#define MassStorage_DAT_hpp
|
|
|
|
#include "RawSectorDump.hpp"
|
|
|
|
namespace Storage {
|
|
namespace MassStorage {
|
|
|
|
/*!
|
|
Provides a @c MassStorageDevice containing an Acorn ADFS image, which is just a
|
|
sector dump of an ADFS volume. It will be validated for an ADFS catalogue and communicate
|
|
in 256-byte blocks.
|
|
*/
|
|
class DAT: public RawSectorDump<256> {
|
|
public:
|
|
DAT(const std::string &file_name);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* MassStorage_DAT_hpp */
|