answersLogoWhite

0


Best Answer

Such extra added hardware cannot be initialise

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What problems can arise when hardware is added and tries to use an interrupt that has been assigned to another device?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What happens when processor is attending an interrupt if it gets another interrupt?

The response to another interrupt request during servicing of an interrupt depends on the setting of the interrupt enable flag and/or the interrupt mask. If the interrupt service routine is thread safe, it will process correctly. More probably, problems will arise so the proper procedure is to either set the interrupt mask (8085) to not allow this or lower priority interrupts before reenabling interrupt, or to leave interrupts disabled until this iteration is complete. If interrupts are disabled or masked, a subsequent interrupt will be posted but not processed until the first is completed.


What is an maskable intErrupt?

interrupts in 8085 are basically classified into two types: 1.Maskable 2.Non maskable maskable interrupts are those which can be delayed.This is done by masking off the interrupts which are not required. Maskable interrupts are:RST 7.5,RST 6.5,RST 5.5 and INTR <decreasing order of priority>


What is another word for refrain?

Avoid, pass, Interrupt.


What is interrupt in architecture?

program interrupt is transfer program control from currently running program to a service program depends on internal or external generated request after execution of service program, program control will be returned to original program


Lawyers are -permitted to interrupt one another when witnesses are being questioned?

not


What is an interrupt and how are multiple interrupts dealt with?

An Interrupt is a signal that goes into a microprocessor that tells it something has happened that needs attention. There are generally dedicated pins on the microprocessor, often called "Int" (for Interrupt) and "NMI" (for Non-Maskable Interrupt). For a microprocessor, an interrupt signal is like the bell on a telephone is for you; it's a notice that you should stop what you are doing now and deal with this issue that has come up. Exact procedures for dealing with an interrupt vary from one microprocessor to another; generally, the microprocessor puts out a signal that says "Where should I go, then?" and a piece of hardware, the Interrupt Controller, then responds with a signal that tells it which condition has happened. The processor then starts processing the indicated piece of code, and that piece of code handles the condition. The Interrupt Controller often handles setting priority for interrupts, accepting a number of signals (often four), and setting priorities on each. It will trigger another interrupt in the middle of processing one if the new interrupt is a higher priority than the one that is already being processed, or will hold on to the lower priority one until the CPU is finished with a higher-priority one. The CPU can often "disable interrupts" when it is doing something time-critical. At such times, the only interrupt that can occur is the Non-Maskable Interrupt, which is generally reserved for critical error conditions that have to be dealt with immediately no matter what else is going on.


What is the definition of the word interrupt?

Interrupt is defined as the action of interjecting one's words or actions during another's words or actions, forcing them to give abrupt pause against their will.


How are multiple interrupts dealt with?

There are 2 approaches to handle this situation,1.Disable interrupts while an interrupt is being processingin this approach, when the processor is being processing an interrupt, the processor ignores any new interrupt signal and these new signals have to wait in a queue and processor will check after the currently processing interrupt is finished.2. Defining priorities for interruptsin this case, each interrupt has a priority value. When the processor is being executing an interrupt, another interrupt can interrupt and gain the processor if the second interrupt has a higher priority than first oneSource- William Stallings, operating systems Sorry, the word you are looking for is not in the Database


Another word for 'disturb'?

Depends on context but: * interrupt * agitate * upset * worry * bother * perturb


Can you go to another court or do you have to go to the one you are assigned to fill out a modification form?

You go to the one assigned


Which funtcion is performing when an operating system receives an interrupt from the printer and pauses the CPU?

In traditional programming parlance, an interrupt is handled by an Interrupt Handler. The CPU is not actually paused, but the current process that was running before the interrupt occurred is paused while the CPU processes the request. Once the Interrupt Handler returns, the application will be returned to its original running state. In modern operating systems with multiple tasks, the original application that was running may stay suspended after the interrupt completes in favor of running another process that has been suspended for some time.


What is interrupt mechanism?

At the beginning of each FDE cycle, each bit in the interrupt register is checked in turn. This register is a special register in the CPU that takes note of when an interrupt has happened. Each bit in the register represents a different kind of interrupt. If a bit has been set, that would indicate an interrupt has happened! The CPU has to decide whether to service the interrupt immediately, or leave it till later. For example, if 2 interrupts have happened at the same time, one of them has to wait! Which one? That depends upon which one is the least important! Some interrupts are more important than others and so need to be done before others. What about the situation where one interrupt is currently being serviced by the CPU and another happens? Again, it depends on how important the new interrupt is compared to the one already being done. If it is more important, then the cpu will want to service it immediately. When the CPU decides to service an interrupt, it stops processing the current job, 'pushing' the contents of its registers onto the stack. This would include, for example, the contents of the Program Counter and the accumulator. The CPU is now free to work on another piece of software but can return to what it was doing after the interrupt has been serviced because it has saved where it was. It then transfers control to the interrupt handling software for that type of interrupt using the vectored interrupt mechanism. When it has finished servicing the interrupt, the contents of the stack are 'popped' back into the appropriate registers and the CPU continues from where it left off before the interrupt happened.