2022-04-08 20:04:12 +08:00

14 lines
271 B
C

#include "timer.h"
#include<common/kprint.h>
#include <exception/softirq.h>
void timer_init()
{
timer_jiffies = 0;
register_softirq(0, &do_timer_softirq, NULL);
}
void do_timer_softirq(void* data)
{
printk_color(ORANGE, BLACK, "(HPET%ld)", timer_jiffies);
}