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; }
the code is this
// Set Timer0 for the fix rate 1464.8 Hz = 12MHz / 2^13 // TL0 = 0x27; // TH0 = 0xF1; TMOD = 1; ET0 = ON; // Timer 0 Interrupt on TR0 = ON; // Timer 0 start
.