blob: 523d14be79c2a3012e1be95b7371b2e1873ad320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
void timer_handler()
{
tick++;
if(tick==TICKS_PER_SECOND)
{
//printf("%d seconds passed\n",time);
tick=0;
time++;
}
ioport_out(0x20, 0x20);
ioport_out(0xa0,0x20);
}
|