mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
21 lines
597 B
C#
21 lines
597 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.Core;
|
|
|
|
namespace Cosmos.Core.IOGroup {
|
|
/// <summary>
|
|
/// Peripheral Component Interconnect (PCI) class. See also: <seealso cref="IOGroup"/>.
|
|
/// </summary>
|
|
public class PCI : IOGroup {
|
|
/// <summary>
|
|
/// Configuration address port.
|
|
/// </summary>
|
|
public IOPort ConfigAddressPort = new IOPort(0xCF8);
|
|
/// <summary>
|
|
/// Configuration data port.
|
|
/// </summary>
|
|
public IOPort ConfigDataPort = new IOPort(0xCFC);
|
|
}
|
|
}
|