From d98828d08eb1f6c1394f38a1df69c73fef0cfefa Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Sun, 17 May 2015 19:43:59 +0200 Subject: working on vt52 and some cleanup --- kernel/syscalls.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'kernel/syscalls.c') diff --git a/kernel/syscalls.c b/kernel/syscalls.c index 6bd51d1..1d63ba4 100644 --- a/kernel/syscalls.c +++ b/kernel/syscalls.c @@ -4,7 +4,6 @@ #include "lib/logger/log.h" #include "fs/fs.h" #include "fs/ext2.h" -#include "kernel/console.h" #include "kernel/kernel.h" #include "kernel/config.h" #include "terminal/vt52.h" @@ -84,7 +83,7 @@ int syscall_read(int file, char *buf, int len) { if(l>0) { - console_del_char(); + //console_del_char(); buf--; l--; } @@ -94,7 +93,7 @@ int syscall_read(int file, char *buf, int len) *buf=c; buf++; l++; - if(c!=0x04)console_put_char_white(c); + //if(c!=0x04)console_put_char_white(c); if(c=='\n')return l; if(c==0x04) { -- cgit v1.2.3