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