mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
367 B
C#
14 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cosmos.HAL.BlockDevice.Registers;
|
|
|
|
namespace Cosmos.HAL.BlockDevice.Ports
|
|
{
|
|
public abstract class StoragePort : BlockDevice
|
|
{
|
|
public abstract PortType mPortType { get; }
|
|
public abstract string mPortName { get; }
|
|
public abstract uint mPortNumber { get; }
|
|
}
|
|
}
|