if((current ^ 0x8000) > (high_val[temp] ^ 0x8000))
high_val[temp] = current;
}
else
{
if(current < low_val[temp])
low_val[temp] = current;
if(current > high_val[temp])
high_val[temp] = current;
}
/* Send the EOI to the interrupt controller to re-arm for next interrupt */
outportb(0x20,0x20);
}