mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
17 lines
343 B
C#
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; }
|
|
|
|
}
|
|
}
|