mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
Done Mouse api
This commit is contained in:
parent
5ae7e032eb
commit
bb1b034f0b
1 changed files with 9 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue