mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
422 B
C#
14 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.Core;
|
|
|
|
namespace Cosmos.Core.IOGroup {
|
|
public class PIT : IOGroup {
|
|
public readonly IOPort Data0 = new IOPort(0x40);
|
|
public readonly IOPort Data1 = new IOPort(0x41);
|
|
public readonly IOPort Data2 = new IOPort(0x42);
|
|
public readonly IOPortWrite Command = new IOPortWrite(0x43);
|
|
}
|
|
}
|