lesson 20 finished: timer + keyboard

This commit is contained in:
Carlos
2015-03-20 16:42:19 +01:00
parent 46094a0e96
commit 5aaabf189d
4 changed files with 11 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ static void timer_callback(registers_t regs) {
tick++;
kprint("Tick: ");
char *tick_ascii;
char tick_ascii[256];
int_to_ascii(tick, tick_ascii);
kprint(tick_ascii);
kprint("\n");