Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 328 → Rev 329

/SPARTAN/trunk/arch/mips/src/interrupt.c
81,9 → 81,9
case 6: /* IRQ4 */
panic("unhandled interrupt %d\n", i);
break;
case 7: /* Timer Interrupt */
cp0_compare_write(cp0_count_read() + cp0_compare_value); /* clear timer interrupt */
/* start counting over again */
case TIMER_INTERRUPT:
/* clear timer interrupt & set new */
cp0_compare_write(cp0_count_read() + cp0_compare_value);
clock();
break;
}