This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

interrupt

Why the program don't enter in this intrrerupt??

this is my code

void timer0_isr (void) interrupt 1 using 1
{
 int a=0,c;
 a++;
    // ram[a] = din(7);
c=9;
 if (a > 10) a=0;
}

0