blob: fec1d0398e9a023a6aec7ef32c68af68a2b04b57 (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: BSD-3-Clause */
#include <arch/exception.h>
#include <console/console.h>
void exception_init(void)
{
printk(BIOS_DEBUG, "Exception handlers not installed.\n");
}
|