blob: ed48da2d0ee2633d7ecf09a8470e89dcd23d498b [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/*
2 * Copyright (c) 2018, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <asm_macros.S>
8
9/*
10 * Simplistic exceptions vector table.
11 * All entries spin, which means all types of exceptions are unrecoverable.
12 */
13 .global exception_stubs
14vector_base exception_stubs
15 b . /* Not used */
16 b . /* Undef */
17 b . /* Syscall */
18 b . /* Prefetch abort */
19 b . /* Data abort */
20 b . /* Hyp trap */
21 b . /* IRQ */
22 b . /* FIQ */