Interrupt vector table: Difference between revisions

Content deleted Content added
m removed self referential link
m removed the wrong link, sorry
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 requestsrequest]]s in a table of [[interrupt vector]]s{{clarify|date=November 2015}}vectors. 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==