ISADMA moved out to a module
[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
9 // === IMPORTS ===
10 extern int      KB_Install(char **Arguments);
11 extern int      Mouse_Install(char **Arguments);
12
13 // === PROTOTYPES ===
14  int    PS2_Install(char **Arguments);
15
16 // === GLOBALS ===
17 MODULE_DEFINE(0, 0x0100, Input_PS2KbMouse, PS2_Install, NULL, NULL);
18 MODULE_DEFINE(0, 0x0100, PS2Keyboard, KB_Install, NULL, NULL);
19
20 // === CODE ===
21 int PS2_Install(char **Arguments)
22 {
23 //      KB_Install(Arguments);
24 //      Mouse_Install(Arguments);
25         return MODULE_ERR_OK;
26 }

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