Open In App

Purpose of an Interrupt in Computer Organization

Interrupt is the mechanism by which modules like I/O or memory may interrupt the normal processing by CPU. It may be either clicking a mouse, dragging a cursor, printing a document etc the case where interrupt is getting generated. Why we require Interrupt? External devices are comparatively slower than CPU. So if there is no interrupt CPU would waste a lot of time waiting for external devices to match its speed with that of CPU. This decreases the efficiency of CPU. Hence, interrupt is required to eliminate these limitations. With Interrupt:

  1. Suppose CPU instructs printer to print a certain document.
  2. While printer does its task, CPU engaged in executing other tasks.
  3. When printer is done with its given work, it tells CPU that it has done with its work. (The word ‘tells’ here is interrupt which sends one message that printer has done its work successfully.).

Advantages:

Disadvantages:

Article Tags :