mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
Done PS2Controller api docs
This commit is contained in:
parent
9f37c2967d
commit
df752ebaf6
1 changed files with 12 additions and 0 deletions
|
|
@ -1,9 +1,21 @@
|
||||||
namespace Cosmos.Core.IOGroup
|
namespace Cosmos.Core.IOGroup
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// PS2 Controller.
|
||||||
|
/// </summary>
|
||||||
public class PS2Controller
|
public class PS2Controller
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Data IO port.
|
||||||
|
/// </summary>
|
||||||
public readonly IOPort Data = new IOPort(0x60);
|
public readonly IOPort Data = new IOPort(0x60);
|
||||||
|
/// <summary>
|
||||||
|
/// Status IO port.
|
||||||
|
/// </summary>
|
||||||
public readonly IOPortRead Status = new IOPortRead(0x64);
|
public readonly IOPortRead Status = new IOPortRead(0x64);
|
||||||
|
/// <summary>
|
||||||
|
/// Command IO port.
|
||||||
|
/// </summary>
|
||||||
public readonly IOPortWrite Command = new IOPortWrite(0x64);
|
public readonly IOPortWrite Command = new IOPortWrite(0x64);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue