1 #include <machine/asm.h>
3 IMPORT(undefined_inst_entry)
5 IMPORT(prefetch_abort_entry)
6 IMPORT(data_abort_entry)
11 LABEL(exc_vector_table)
12 ldr pc, =invalid_exc /* Reset */
13 ldr pc, =undefined_inst_entry /* Undefined Instruction */
14 ldr pc, =svc_entry /* Supervisor Call */
15 ldr pc, =prefetch_abort_entry /* Prefetch Abort */
16 ldr pc, =data_abort_entry /* Data Abort */
17 ldr pc, =invalid_exc /* Hypervisor Call */
18 ldr pc, =irq_entry /* Interrupt */
19 ldr pc, =invalid_exc /* Fast Interrupt */