teach-ict.com logo

THE education site for computer science and ICT

Interrupt

Computer programs normally follow from one instruction after another and carry on working through them in sequence.

This is fine if nothing else is happening. But if something happens which the CPU needs to deal with at that instant, such as a mouse movement, or a keyboard input, engineers have built a system into the microprocessor to deal with these events and have called them an 'interrupt'.

An interrupt will signal to the software currently running, to break off from what it is doing and to handle the interrupt instead. When the task is complete, the software jumps back to the instruction it was working on before being interrupted and carries on again from that point.

Challenge see if you can find out one extra fact on this topic that we haven't already told you

Click on this link: Interrupt

 

2020-10