Modules/USB - Working on USB support again
[tpg/acess2.git] / Modules / Input / PS2KbMouse / main.c
1 /*
2  * Acess2
3  *
4  * PS/2 Keboard / Mouse Driver
5  */
6 #include <acess.h>
7 #include <modules.h>
8 #include "common.h"
9
10 // === IMPORTS ===
11
12 // === PROTOTYPES ===
13  int    PS2_Install(char **Arguments);
14
15 // === GLOBALS ===
16 MODULE_DEFINE(0, 0x0100, Input_PS2KbMouse, PS2_Install, NULL, NULL);    // Shuts the makefile up
17 MODULE_DEFINE(0, 0x0100, PS2Keyboard, KB_Install, NULL, NULL);
18 MODULE_DEFINE(0, 0x0100, PS2Mouse, PS2Mouse_Install, NULL, NULL);
19
20 // === CODE ===
21 int PS2_Install(char **Arguments)
22 {
23         KBC8042_Init();
24         return MODULE_ERR_OK;
25 }

UCC git Repository :: git.ucc.asn.au