Modules/USB - Working on USB support again
[tpg/acess2.git] / Modules / Input / PS2KbMouse / main.c
index 353befb..e3ea35c 100644 (file)
@@ -5,22 +5,21 @@
  */
 #include <acess.h>
 #include <modules.h>
+#include "common.h"
 
 // === IMPORTS ===
-extern int     KB_Install(char **Arguments);
-extern int     Mouse_Install(char **Arguments);
 
 // === PROTOTYPES ===
  int   PS2_Install(char **Arguments);
 
 // === GLOBALS ===
-MODULE_DEFINE(0, 0x0100, Input_PS2KbMouse, PS2_Install, NULL, NULL);
+MODULE_DEFINE(0, 0x0100, Input_PS2KbMouse, PS2_Install, NULL, NULL);   // Shuts the makefile up
 MODULE_DEFINE(0, 0x0100, PS2Keyboard, KB_Install, NULL, NULL);
+MODULE_DEFINE(0, 0x0100, PS2Mouse, PS2Mouse_Install, NULL, NULL);
 
 // === CODE ===
 int PS2_Install(char **Arguments)
 {
-//     KB_Install(Arguments);
-//     Mouse_Install(Arguments);
+       KBC8042_Init();
        return MODULE_ERR_OK;
 }

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