__interrupt void ILLEGAL_ISR(void) // Illegal operation TRAP
{
// Insert ISR Code here
// Next two lines for debug only to halt the processor here
// Remove after inserting ISR Code
__asm(" ESTOP0");
for(;;);
}
如果是这个的话,是指非法指令,比如你的ram覆盖导致指令区的指令被改写了,会出这个 |
|