// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : Enums.cs // Author(s) : Natalia Portillo // // Component : Disk image plugins. // // --[ Description ] ---------------------------------------------------------- // // Contains enumerations for Digital Research's DISKCOPY disk images. // // --[ License ] -------------------------------------------------------------- // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2021 Natalia Portillo // ****************************************************************************/ using System.Diagnostics.CodeAnalysis; namespace Aaru.DiscImages { [SuppressMessage("ReSharper", "UnusedMember.Local")] public sealed partial class DriDiskCopy { /// Drive codes change according to CMOS stored valued [SuppressMessage("ReSharper", "InconsistentNaming")] enum DriveCode : byte { /// 5.25" 360k md2dd = 0, /// 5.25" 1.2M md2hd = 1, /// 3.5" 720k mf2dd = 2, /// 3.5" 1.44M mf2hd = 7, /// 3.5" 2.88M mf2ed = 9 } } }