aboutsummaryrefslogtreecommitdiff
path: root/include/07.pit/timer3.c
blob: 6527a48179b7be7f6696422899a78f055d076a5e (plain)
1
2
3
4
5
6
7
8
void timer_handler(void)
{
    tick++;
    if(tick==TICKS_PER_SECOND)
    {
        tick=0;
        time++;
    }