
// this code is for compiling using SDCC
void ex0_isr (void) interrupt 0 <b>_naked</b>
{
<i> switch led on</i>
while(!(P3_2));        //wait till low level
<i> switch off the led</i>
}
