Question:

Which one of the following is not a vectored interrupt?

Show Hint

TRAP, RST 7.5, RST 6.5 are hardware vectored. INTR is non-vectored. RST 3 is a software interrupt — not hardware vectored.
Updated On: Jun 24, 2025
  • TRAP
  • INTR
  • RST 7.5
  • RST 3
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

Step 1: Understand Vectored Interrupts
A vectored interrupt transfers program control to a fixed memory location (vector address) predefined for each interrupt. Each vectored interrupt has its own specific service routine address.
Step 2: Analyze Each Option
- (1) TRAP: Vectored, highest priority interrupt (vector address 0024H).
- (2) INTR: Not vectored — this is a non-vectored interrupt. The external device must supply the address.
- (3) RST 7.5: Vectored, vector address is 003CH.
- (4) RST 3: This is a software interrupt, not hardware vectored.
Step 3: Why RST 3 is the Answer
RST instructions (RST 0 to RST 7) are software interrupts in 8085, and though they have vector locations, they are triggered by software not hardware, making RST 3 not a hardware vectored interrupt in the intended context.
Conclusion:
Among the options, RST 3 is not a hardware vectored interrupt — Option (4) is correct.
Was this answer helpful?
0
0