mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
21 lines
508 B
C#
21 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.Core;
|
|
|
|
namespace Cosmos.Core.IOGroup {
|
|
/// <summary>
|
|
/// Real time clock class.
|
|
/// </summary>
|
|
public class RTC : IOGroup {
|
|
/// <summary>
|
|
/// Address IOPort.
|
|
/// </summary>
|
|
public readonly IOPort Address = new IOPort(0x70);
|
|
/// <summary>
|
|
/// Data IOPort.
|
|
/// </summary>
|
|
public readonly IOPort Data = new IOPort(0x71);
|
|
}
|
|
}
|