Hi,
I am verifying code which is implemented as interrupts as below:
interrupt void SEQ1INT_ISR(void) /*SEQ1 ADC */
{
/* Insert ISR Code here */
/* To receive more interrupts from this PIE group, acknowledge this interrupt */
/* PieCtrlRegs.PIEACK.all = PIEACK_GROUP1; */
/* Next two lines for debug only to halt the processor here */
/* Remove after inserting ISR Code */
asm (" ESTOP0");
for(;;);
}
What exactly following lines of code does in function.
Regards
Ganesh