Fixed timer bug and other bugs about libc

This commit is contained in:
ice-bit
2019-07-08 12:01:01 +02:00
parent 47af4d2f59
commit 162bd743fd
6 changed files with 11 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ static void timer_callback(registers_t regs) {
uint8_t buf[8];
itoa(tick, buf, 10);
kprint((uint8_t*)"Time: ");
uitoa(tick, buf, 10);
kprint((uint8_t*)buf);
kprint((uint8_t*)"\n");