mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
15 lines
357 B
C#
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);
|
|
}
|
|
}
|