
Microcontrollers - 8051 Interrupts
Interrupts are the events that temporarily suspend the main program,
pass the control to the external sources and execute their task. It then
passes the control to the main program where it had left off.
8051 has 5 interrupt signals, i.e. INT0, TFO, INTR1, TF1, RI/TI. Each
interrupt can be enabled or disabled by setting bits of the IE register
and the whole interrupt system can be disabled by clearing the...