mirror of
https://github.com/drasko/codezero.git
synced 2026-03-28 23:09:03 +01:00
16 lines
249 B
C
Executable File
16 lines
249 B
C
Executable File
/*
|
|
* Mouse details.
|
|
*/
|
|
#ifndef __MOUSE_H__
|
|
#define __MOUSE_H__
|
|
|
|
/*
|
|
* Keyboard structure
|
|
*/
|
|
struct mouse {
|
|
unsigned long base; /* Virtual base address */
|
|
struct capability cap; /* Capability describing keyboard */
|
|
};
|
|
|
|
#endif /* __MOUSE_H__ */
|