Similarly to ARM cores, VPRs should call `SystemInit()` at reset. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Let SystemInit() be called in place of soc_reset_hook() by default. */
|
|
PROVIDE(soc_reset_hook = SystemInit);
|