// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : Structs.cs // Author(s) : Natalia Portillo // // Component : MicroDOS filesystem plugin // // --[ 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-2025 Natalia Portillo // ****************************************************************************/ // ReSharper disable UnusedType.Local // ReSharper disable UnusedMember.Local using System.Runtime.InteropServices; namespace Aaru.Filesystems; /// /// /// Implements detection for the MicroDOS filesystem. Information from http://www.owg.ru/mkt/BK/MKDOS.TXT Thanks /// to tarlabnor for translating it /// public sealed partial class MicroDOS { #region Nested type: Block0 // Followed by directory entries [StructLayout(LayoutKind.Sequential, Pack = 1)] readonly struct Block0 { /// BK starts booting here [MarshalAs(UnmanagedType.ByValArray, SizeConst = 24)] public readonly byte[] bootCode; /// Number of files in directory public readonly ushort files; /// Total number of blocks in files of the directory public readonly ushort usedBlocks; /// Unknown [MarshalAs(UnmanagedType.ByValArray, SizeConst = 228)] public readonly byte[] unknown; /// Ownership label (label that shows it belongs to Micro DOS format) public readonly ushort label; /// MK-DOS directory format label public readonly ushort mklabel; /// Unknown [MarshalAs(UnmanagedType.ByValArray, SizeConst = 50)] public readonly byte[] unknown2; /// /// Disk size in blocks (absolute value for the system unlike NORD, NORTON etc.) that doesn't use two fixed values /// 40 or 80 tracks, but i.e. if you drive works with 76 tracks this field will contain an appropriate number of blocks /// public readonly ushort blocks; /// Number of the first file's block. Value is changable public readonly ushort firstUsedBlock; /// Unknown [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] public readonly byte[] unknown3; } #endregion #region Nested type: DirectoryEntry [StructLayout(LayoutKind.Sequential, Pack = 1)] readonly struct DirectoryEntry { /// File status public readonly byte status; /// Directory number (0 - root) public readonly byte directory; /// File name 14. symbols in ASCII KOI8 [MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)] public readonly byte[] filename; /// Block number public readonly ushort blockNo; /// Length in blocks public readonly ushort blocks; /// Address public readonly ushort address; /// Length public readonly ushort length; } #endregion }