Files
Aaru/Aaru.Images/A2R/Enums.cs

66 lines
2.2 KiB
C#
Raw Normal View History

2023-07-06 00:04:46 +02:00
// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Enums.cs
// Author(s) : Rebecca Wallander <sakcheen@gmail.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Contains enumerations for A2R flux 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Rebecca Wallander
2023-07-06 00:04:46 +02:00
// ****************************************************************************/
using System.Diagnostics.CodeAnalysis;
namespace Aaru.Images;
2023-07-06 00:04:46 +02:00
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2023-07-06 00:04:46 +02:00
public sealed partial class A2R
{
2023-10-05 01:52:48 +01:00
#region A2RDiskType enum
2023-10-03 23:34:59 +01:00
2023-10-05 01:52:48 +01:00
public enum A2RDiskType : byte
2023-07-06 00:04:46 +02:00
{
2023-10-03 23:34:59 +01:00
_525 = 0x01,
_35 = 0x2
2023-07-06 00:04:46 +02:00
}
2023-10-03 23:34:59 +01:00
#endregion
#region A2rDriveType enum
[SuppressMessage("ReSharper", "InconsistentNaming")]
public enum A2rDriveType : byte
2023-07-06 00:04:46 +02:00
{
2023-10-03 23:34:59 +01:00
SS_525_40trk_quarterStep = 0x1,
DS_35_80trk_appleCLV = 0x2,
DS_525_80trk = 0x3,
DS_525_40trk = 0x4,
DS_35_80trk = 0x5,
DS_8 = 0x6,
DS_3_80trk = 0x7,
DS_3_40trk = 0x8
2023-07-06 00:04:46 +02:00
}
2023-10-03 23:34:59 +01:00
#endregion
2023-07-06 00:04:46 +02:00
}