diff --git a/source/Cosmos.Core/IOGroup/PS2Controller.cs b/source/Cosmos.Core/IOGroup/PS2Controller.cs index f1a20af97..5007f4e3a 100644 --- a/source/Cosmos.Core/IOGroup/PS2Controller.cs +++ b/source/Cosmos.Core/IOGroup/PS2Controller.cs @@ -1,9 +1,21 @@ namespace Cosmos.Core.IOGroup { + /// + /// PS2 Controller. + /// public class PS2Controller { + /// + /// Data IO port. + /// public readonly IOPort Data = new IOPort(0x60); + /// + /// Status IO port. + /// public readonly IOPortRead Status = new IOPortRead(0x64); + /// + /// Command IO port. + /// public readonly IOPortWrite Command = new IOPortWrite(0x64); } }