refactor (PS/2 keyboard): removed debug logs when handling cursor keys

This commit is contained in:
antifallobst 2023-05-03 22:49:18 +02:00
parent be508dae9f
commit f2584f7754
1 changed files with 0 additions and 2 deletions

View File

@ -61,7 +61,6 @@ void ps2_keyboard_init() {
pic_unmask_irq(IRQ_KEYBOARD);
}
#include "utils/memory.h"
void ps2_keyboard_read() {
uint8_t scancode = ps2_controller_read_data();
char chr [8];
@ -98,7 +97,6 @@ void ps2_keyboard_read() {
return;
}
}
memory_hexdump(chr, 8);
}
if (scancode == PS2_SCANCODE_SET_1_MODIFIER) {