xref: /aosp_15_r20/external/coreboot/src/arch/arm/armv7/exception_mr.c (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 
3 #include <arch/exception.h>
4 #include <console/console.h>
5 
exception_init(void)6 void exception_init(void)
7 {
8 	printk(BIOS_DEBUG, "Exception handlers not installed.\n");
9 }
10