Interrupt vector table: Difference between revisions

Content deleted Content added
m Decapitalized common nouns, stylistic change
m removed self referential link
Line 1:
{{about|the general concept|its implementation found in x86 processors|Interrupt descriptor table}}
 
An '''interrupt vector table''' (IVT) is a [[data structure]] that associates a list of [[interrupt handler]]s with a list of [[interrupt request]]srequests in a table of [[interrupt vector]]s{{clarify|date=November 2015}}. An interrupt vector is the address of the interrupt handler. While the concept is common across processor architectures, each IVT may be implemented in an architecture-specific fashion. For example, a [[dispatch table]] is one method of implementing an interrupt vector table.
 
==Background==