mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-15 08:56:47 +00:00
14 lines
271 B
C
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);
|
|
} |