Cosmos/source/Cosmos.Core/IOGroup/PCSpeaker.cs

15 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Core;
namespace Cosmos.Core.IOGroup
{
public class PCSpeaker : IOGroup
{
public readonly IOPort p61 = new IOPort(0x61);
public readonly IOPort p43 = new IOPort(0x43);
public readonly IOPort p42 = new IOPort(0x42);
}
}