00001 #include "../eth/eth.h" 00002 #include "../uart/uart.h" 00003 00004 void EMAC_ISR_Handler( void ) __attribute__ ((interrupt("IRQ"))); 00005 00006 void EMAC_ISR_Handler( void ) 00007 { 00008 MAC_INTCLEAR = 0xf0ff; 00009 VICVectAddr = 0; 00010 //uart_putc('e'); 00011 ethernet_task(); 00012 }