/********************************************************************** * Dummy Interrupt Handlers * * File name: ints549.c * * Compile with normal optimization: * * (a) If extended memory not used: cl500 -mn ints549.c * * (b) If extended memory used: cl500 -mn -mf ints549.c * * Note: The c compiler prefixes an underscore to each c variable. * * For example, c_INT0 is converted to _c_INT0 in the asm code ouput * * by the compiler. * ***********************************************************************/ interrupt void c_INT0() /* External user interrupt 0 */ { } interrupt void c_INT1() /* External user interrput 1 */ { } interrupt void c_INT2() /* External user interrupt 2 */ { } interrupt void c_TINT() /* Timer interrupt */ { } interrupt void c_BRINT0() /* BSP 0 receive interrupt */ { } interrupt void c_BXINT0() /* BSP 0 transmit interrupt */ { } interrupt void c_TRNT() /* TDM receive interrupt */ { } interrupt void c_TXNT() /* TDM transmit interrupt */ { } interrupt void c_INT3() /* External user interrupt 3 */ { } interrupt void c_HPINT() /* HPI interrupt */ { } interrupt void c_BRINT1() /* BSP 1 receive interrupt */ { } interrupt void c_BXINT1() /* BSP 1 transmit interrupt */ { } interrupt void c_BMINT0() /* BSP 0 mis-alignment detection int */ { } interrupt void c_BMINT1() /* BSP 1 mis-alignment detection int */ { }