Cosmos/source2/Kernel/System/Hardware/Cosmos.Hardware/PciDevice.cs
2011-02-22 16:56:17 +00:00

13 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Hardware {
// Needs to be renamed. IoPCI? PciSlot? Does not descend from Device and devices create
// their hierarchy by function, not interface (ie BlockDevice, not Pci).
// PciDevice serves a function like IOPort and can be passed to a contructor
// of a device.
public class PciDevice {
}
}