answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why is the INTR input automatically disabled as a part of the response to an INTR interrupt?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What r the functions of interrupt initiated Input Output?

software


What is rim in microprocessor 8085?

RIM is Read Interrupt Mask. It is used to access the interrupt mask register, which contains the status of the three interrupt masks and the serial input data pin.


How do you make an html button uneditable?

The normal code for an input button is this:To make it inactive, add this:


What is interrupts and list classes of interrupts in operating system?

An interrupt is an event that alters the sequence in which the processor execute instructions. It is generated by hardware of computer system. Classes of interrupt:- IBM processor has six types of interrupts. * svc interrupt(supervisor call) *input/output interrupts *external interrupts *Restart interrupts *Program check interrupt *Machine check interrupts


What is the scientific term for an input into a system that causes a response?

Systemic


What do you mean by interrupt driven input output and programmed input and output?

PIO uses the port access instructions of the CPU to receive or send data. That is also known as polling, since you have to constantly use the CPU to monitor a particular port address. Interrupt driven would use the IRQ controller to access things. The CPU still does the work, but the interrupt calls on the CPU rather than a currently running program doing so.


Is platter a computer input device for disabled people?

No. A platter would be a component of a hard disk drive.


How do you link cells in excel so that when one word is input in one cell automatically input in a different cell?

in cell B1 put +A1


What are the five computer mouse operations?

input, output, program, action, response


What is the difference stimulus and response?

A stimulus is an external event that triggers a response in an organism. A response is the reaction or behavior that an organism exhibits as a result of a stimulus. In short, a stimulus is the input, while a response is the output.


Why you need interrupt?

An interrupt is a signal from a device attached to a computer or from a program within the computer that causes the CPU to stop executing the current program and figure out what to do next. It enable input/output device communicate or get the attention of the processor, and execute a program that need more attention.


What is difference between interupt and subroutine?

Interrupt is the signal generated by the input/output devices in order to take the attention of the processor. When the processor receives the interrupt signals it checks the priority status and finish the current fetch and execute cycle and (if the priority status is high) allow the input/output device to process their tasks. Then previous fetch and execute cycle is continued. This is called interrupt service routine. The programs are broken down in to small sub programs which are called subroutines. Then the program reusability, readability, maintainability ...etc will be increased.