Mosa.DeviceSystem.DiskGeometry.DiskGeometry C# (CSharp) Method

DiskGeometry() public method

Initializes a new instance of the DiskGeometry struct.
public DiskGeometry ( ushort cylinders, byte heads, ushort sectorsPerTrack )
cylinders ushort The cylinders.
heads byte The heads.
sectorsPerTrack ushort The sectors per track.
        public DiskGeometry(ushort cylinders, byte heads, ushort sectorsPerTrack)
        {
            Cylinders = cylinders;
            Heads = heads;
            SectorsPerTrack = sectorsPerTrack;
        }