using System; using System.Collections.Generic; using System.Linq; using System.Text; using Cosmos.Core; namespace Cosmos.Core.IOGroup { /// /// Programmable Interval Timer (PIT) class. See also: . /// public class PIT : IOGroup { /// /// Channel 0 data port. /// public readonly IOPort Data0 = new IOPort(0x40); /// /// Channel 1 data port. /// public readonly IOPort Data1 = new IOPort(0x41); /// /// Channel 2 data port. /// public readonly IOPort Data2 = new IOPort(0x42); /// /// Command register port. /// public readonly IOPortWrite Command = new IOPortWrite(0x43); } }