using System; using System.Collections.Generic; using System.Linq; using System.Text; using Cosmos.Core; namespace Cosmos.Core.IOGroup { /// /// Real time clock class. /// public class RTC : IOGroup { /// /// Address IOPort. /// public readonly IOPort Address = new IOPort(0x70); /// /// Data IOPort. /// public readonly IOPort Data = new IOPort(0x71); } }