summaryrefslogtreecommitdiff
path: root/kernel/console.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-08-20 15:55:03 +0200
committerMichal Idziorek <m.i@gmx.at>2014-08-20 15:55:03 +0200
commitdc164927e71d760a41494ab1edf8e3deeda401db (patch)
tree65253b4a5e443c599341d5972b58449388a4b2b1 /kernel/console.c
parent46063e75f3f81dfb532fa5772c88e9027a0faebd (diff)
started implementing floppy driver etc.
Diffstat (limited to 'kernel/console.c')
-rw-r--r--kernel/console.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/console.c b/kernel/console.c
index 77b5fc1..42dc5d0 100644
--- a/kernel/console.c
+++ b/kernel/console.c
@@ -99,6 +99,7 @@ void scr_nextline()
void scr_put_char(char ch,char col)
{
+
print_char_col(posx,posy,ch,SCR_WHITE);
posx++;
if(posx>=SCR_WIDTH)scr_nextline();