Cosmos/source/Cosmos.Core/IOGroup/PCSpeaker.cs
Siaranite a1c72e1c51 Plugged Console.Beep
Not sure about nuget.exe must've upgraded during build.
2018-04-14 02:12:42 +01:00

15 lines
366 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 Port61 = new IOPort(0x61);
public readonly IOPort Port43 = new IOPort(0x43);
public readonly IOPort Port42 = new IOPort(0x42);
}
}