aboutsummaryrefslogtreecommitdiff
path: root/src/int/8042.c
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-12 10:28:04 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-12 10:28:04 +0200
commit457a2117706cdaee34f894e67c89da7bf29f6143 (patch)
treee3a1a519c5360abcca95732500594c92af9af51c /src/int/8042.c
parent39713a3736145483dd3310c3605f940ca34f05c3 (diff)
Refactoring
Diffstat (limited to 'src/int/8042.c')
-rw-r--r--src/int/8042.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/int/8042.c b/src/int/8042.c
deleted file mode 100644
index 5446f11..0000000
--- a/src/int/8042.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "8042.h"
-#include "core/framebuffer.h"
-#include "core/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]);
-}