Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Explain the difference between vectored and non-vectored interrupt. Explain stating examples of each.

No.AspectVectored InterruptNon-Vectored Interrupt
1.DefinitionDevice tells processor where to go for handling.Processor checks each device to find who needs attention.
2.Information FlowDevice gives processor specific info (vector).Processor hunts for the needy device one by one.
3.EfficiencyQuick jump to handling, efficient.Slower, checks all devices until it finds one asking for help.
4.ExamplesVectored: PIC in x86 architecture.Non-Vectored: 8085 microprocessor.

Leave a Comment