blob: d914210277bac94d90bd3adcb821391ce496ec63 [file] [log] [blame]
/*
* Copyright (c) 2020 Henrik Brix Andersen <henrik@brixandersen.dk>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/device.h>
#include <zephyr/arch/arm/aarch32/nmi.h>
static int arm_designstart_init(void)
{
/*
* Install default handler that simply resets the CPU if
* configured in the kernel, NOP otherwise
*/
NMI_INIT();
return 0;
}
SYS_INIT(arm_designstart_init, PRE_KERNEL_1, 0);