Computer Science, asked by sarkartoushik, 7 months ago

Draw and explain Serial Connection of Interrupt lines using hardware

Answers

Answered by neerajbansal00123
0

Answer:

In this method, all interrupts are serviced by branching to the same service program. This program then checks with each device if it is the one generating the interrupt. The order of checking is determined by the priority that has to be set. The device having the highest priority is checked first and then devices are checked in descending order of priority. If the device is checked to be generating the interrupt, another service program is called which works specifically for that particular device.

The structure will look something like this-

if (device[0].flag)

device[0].service();

else if (device[1].flag)

device[1].service();

.

Explanation:

HARDWARE METHOD – DAISY CHAINING

The daisy-chaining method involves connecting all the devices that can request an interrupt in a serial manner. This configuration is governed by the priority of the devices. The device with the highest priority is placed first followed by the second highest priority device and so on. The given figure depicts this arrangement.

WORKING:

There is an interrupt request line which is common to all the devices and goes into the CPU.

When no interrupts are pending, the line is in HIGH state. But if any of the devices raises an interrupt, it places the interrupt request line in the LOW state.

The CPU acknowledges this interrupt request from the line and then enables the interrupt acknowledge line in response to the request.

This signal is received at the PI(Priority in) input of device 1.

If the device has not requested the interrupt, it passes this signal to the next device through its PO(priority out) output. (PI = 1 & PO = 1)

However, if the device had requested the interrupt, (PI =1 & PO = 0)

The device consumes the acknowledge signal and block its further use by placing 0 at its PO(priority out) output.

The device then proceeds to place its interrupt vector address(VAD) into the data bus of CPU.

The device puts its interrupt request signal in HIGH state to indicate its interrupt has been taken care of.

Similar questions