Vectortabelle
A vectortabelle, or vector table, is a data structure used in computer systems to map event types such as interrupts or exceptions to the memory addresses of their corresponding handler routines. It acts as a dispatch table that lets the system transfer control to the appropriate code in response to asynchronous events or system events. While the term is most common in embedded and real-time contexts, similar concepts appear in other software domains as jump or dispatch tables.
In microcontroller and processor architectures, the vector table is typically located in non-volatile memory at a
The size and exact layout depend on the device and its interrupt set. Each entry is typically
Beyond embedded systems, the term is used more broadly for dispatch structures that route events to handlers