Cosmos/source/Playgrounds/Ben/SOOOS/Code/trustedLibs/HAL/IHAL/IHal.cs

17 lines
343 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IHAL
{
public interface IHal
{
IHalProcessors Processors { get; }
IHalScheduling Scheduling { get; }
IBus Busses { get; }
IDevices Devices { get; }
IHalIO IO { get; }
}
}