aboutsummaryrefslogtreecommitdiff
path: root/src/utils/8042.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/8042.c')
-rw-r--r--src/utils/8042.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/utils/8042.c b/src/utils/8042.c
deleted file mode 100644
index 1d22152..0000000
--- a/src/utils/8042.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "8042.h"
-#include "framebuffer.h"
-#include "asm.h"
-
-DEFINE_AZERTY;
-
-void _8042_keypress(){
- u8 data;
- do {
- inb(0x64,data);
- }
- while((data&0x01) == 0);
- inb(0x60,data);
- if(data<0x80)
- putchar(AZERTY[data]);
-}