[INTERRUPTS] Enabling the APIC timer

This commit is contained in:
2017-01-24 12:19:47 +01:00
parent 9ae3b014da
commit d3d065b2e2
3 changed files with 64 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
#include <apic.h>
#include <sse.h>
#include <timer.h>
#include <pit.h>
void thread_function()
{
@@ -18,6 +19,7 @@ void thread_function()
{
debug((char *)0x10000);
schedule();
pit_delay(100);
}
}