1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00
CLK/Storage/MassStorage/Encodings/AppleIIVolume.hpp

30 lines
517 B
C++
Raw Normal View History

2022-08-24 16:00:03 +00:00
//
// AppleIIVolume.hpp
// Clock Signal
//
// Created by Thomas Harte on 24/08/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#pragma once
2022-08-24 16:00:03 +00:00
#include "ApplePartitionMap.hpp"
2023-05-10 21:02:18 +00:00
namespace Storage::MassStorage::Encodings::AppleII {
2022-08-24 16:00:03 +00:00
struct VolumeProvider {
static constexpr bool HasDriver = false;
const char *name() const {
return "ProDOS";
}
const char *type() const {
return "Apple_PRODOS";
}
};
using Mapper = Storage::MassStorage::Encodings::Apple::PartitionMap<VolumeProvider>;
}