1/* SPDX-License-Identifier: Apache-2.0 */
2
3#if !(LINKER_ZEPHYR_FINAL && CONFIG_ISR_TABLES_LOCAL_DECLARATION)
4. = ALIGN(CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN);
5KEEP(*(_IRQ_VECTOR_TABLE_SECTION_SYMS))
6#endif
7
8/*
9 * Some ARM platforms require this symbol to be placed after the IRQ vector
10 * table (like STM32F0). The symbol defined here is overriding the one in
11 * arch/arm/core/vector_table.ld when the IRQ vector table is enbled.
12 */
13 _vector_end = .;
14