Done Mouse api

This commit is contained in:
Elia Sulimanov 2020-07-26 22:29:49 +03:00
parent 5ae7e032eb
commit bb1b034f0b

View file

@ -5,9 +5,18 @@ using Cosmos.Core;
namespace Cosmos.Core.IOGroup
{
/// <summary>
/// Mouse class. See also: <seealso cref="IOGroup"/>.
/// </summary>
public class Mouse : IOGroup
{
/// <summary>
/// Data port.
/// </summary>
public readonly IOPort p60 = new IOPort(0x60);
/// <summary>
/// Indicator port, used to tell if data came from keyboard or mouse.
/// </summary>
public readonly IOPort p64 = new IOPort(0x64);
}
}