#include "timer.h" #include #include 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); }