mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 02:02:30 +00:00
14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Hardware {
|
|
public class ATA {
|
|
protected Core.IOGroup.PciDevice IO;
|
|
|
|
public ATA(Core.IOGroup.PciDevice aIO) {
|
|
IO = aIO;
|
|
}
|
|
}
|
|
}
|