timer.c 271 B

1234567891011121314
  1. #include "timer.h"
  2. #include<common/kprint.h>
  3. #include <exception/softirq.h>
  4. void timer_init()
  5. {
  6. timer_jiffies = 0;
  7. register_softirq(0, &do_timer_softirq, NULL);
  8. }
  9. void do_timer_softirq(void* data)
  10. {
  11. printk_color(ORANGE, BLACK, "(HPET%ld)", timer_jiffies);
  12. }