• interrupts
    Many thanks for those who help me! (: I got a problem here... If i were to use 3 types of interrupts(external interrupt0, timer0 and timer1) in one single program, how should i go about writing...
  • interrupts
    hi everyone i am new to 8051 and and have some problem with interrupts while working with kiel software. i am unable to pass arguments to following function void serial_isr(char code *ptr) interrupt...
  • interrupt
    hello everyone, how to write an interrupt service routine in c++ i have following class: class nm { public: char i; }; & ISR is: void timer_isr(void) interrupt 1 { nm.i = 10; ...
  • interrupts
    dear friends question related to interrupts(8051 generic), what is interrupt vector address how it is used? have any program we have put there? prsanna
  • 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; }