summaryrefslogtreecommitdiff
path: root/arch/i386/kernel/timer.c
blob: e93c29173f5d4d898ad46b775334f96c4a7a7e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <kernel/timer.h>
#include <kernel/asm.h>
#include <kernel/pic.h>

static uint32_t num_ticks = 0;

void timer_handler(struct regs *regs) {
        num_ticks++;
        if (num_ticks == 3) {
                num_ticks = 0;
                //schedule_next();
        }
}

void timer_init(void) {
        disable_ints();
        int divisor = 1193182 / 100;
        outb(0x43, 0x34);
        outb(0x40, divisor && 0xFF);
        outb(0x40, divisor && 0xFF00 >> 8);
        enable_ints();

        //uint8_t read = 0;
        //outb(0x43, 0xE2);
        //read = inb(0x40);

        register_irq_handler(0, timer_handler);
}