diff --git a/src/io/kbd/ps2.c b/src/io/kbd/ps2.c index 8cb5622..df82811 100644 --- a/src/io/kbd/ps2.c +++ b/src/io/kbd/ps2.c @@ -202,7 +202,7 @@ void keyboard_handler() if (c) { // Should probably have a keyboard buffer here... instead of this - //putchar(c); + putchar(c); } } } diff --git a/src/kmain.c b/src/kmain.c index aa22187..a2b0812 100644 --- a/src/kmain.c +++ b/src/kmain.c @@ -122,7 +122,7 @@ void kmain() { printf("testing, attention please %d\n", i); } - term_scroll(); + // term_scroll(); hcf(); }