mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +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
|
||||
{
|
||||
/// <summary>
|
||||
/// PS2 Controller.
|
||||
/// </summary>
|
||||
public class PS2Controller
|
||||
{
|
||||
/// <summary>
|
||||
/// Data IO port.
|
||||
/// </summary>
|
||||
public readonly IOPort Data = new IOPort(0x60);
|
||||
/// <summary>
|
||||
/// Status IO port.
|
||||
/// </summary>
|
||||
public readonly IOPortRead Status = new IOPortRead(0x64);
|
||||
/// <summary>
|
||||
/// Command IO port.
|
||||
/// </summary>
|
||||
public readonly IOPortWrite Command = new IOPortWrite(0x64);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue