diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
commit | 593bf4df3d8db49286c1a7ae4ef75c887b629930 (patch) | |
tree | 988a104c9611d72e1252282789688586efd9a394 /src/kernel/task/timer.cpp | |
parent | 7c9a48b4e6d66cf4f62e7bad9e22ab06923e47ef (diff) | |
download | TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.tar.gz TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.zip |
Devices using the VFS structure. Basic keyboard handler.
Diffstat (limited to 'src/kernel/task/timer.cpp')
-rw-r--r-- | src/kernel/task/timer.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/kernel/task/timer.cpp b/src/kernel/task/timer.cpp index ccc3c79..0e92b57 100644 --- a/src/kernel/task/timer.cpp +++ b/src/kernel/task/timer.cpp @@ -3,7 +3,6 @@ #include "idt.h" #include <mem/mem.h> #include <core/sys.h> -#include <core/monitor.h> static uint32_t tick = 0, frequency = 0, uptime = 0; @@ -23,8 +22,6 @@ void timer_init(uint32_t freq) { uint8_t l = (divisor & 0xFF), h = (divisor >> 8); outb(0x40, l); outb(0x40, h); - - monitor_write("[PIT] "); } /* Accessor function to get machine uptime. */ |