summaryrefslogtreecommitdiff
path: root/kernel/console.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-07-08 12:14:15 +0200
committerMichal Idziorek <m.i@gmx.at>2014-07-08 12:14:15 +0200
commit24c2a30b304ac1285db71375e31f46f85b50b1bc (patch)
treeea59569e9c9abf221e191516a7a4fd78331ff51b /kernel/console.c
parent264e6ebaa0816d0d2070090ebd7a75d7767929cb (diff)
Refactoring and movint Interrupt Vector Setup to C
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 9381eed..48e5ee7 100644
--- a/kernel/console.c
+++ b/kernel/console.c
@@ -31,6 +31,7 @@ void print_hex(uint16_t val)
}
+
void print_single_hex(int i)
{
if(i<10)print_char_col(posx,posy,'0'+i,SCR_GREEN);