mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 02:06:37 +01:00
17 lines
287 B
C
Executable File
17 lines
287 B
C
Executable File
/*
|
|
* Mouse details.
|
|
*/
|
|
#ifndef __MOUSE_H__
|
|
#define __MOUSE_H__
|
|
|
|
/*
|
|
* Keyboard structure
|
|
*/
|
|
struct mouse {
|
|
unsigned long base; /* Virtual base address */
|
|
unsigned long phys_base; /* Physical address of device */
|
|
int irq_no; /* IRQ number of device */
|
|
};
|
|
|
|
#endif /* __MOUSE_H__ */
|