1 /*
2  * Copyright (c) Copyright (c) 2021 BrainCo Inc.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #include <zephyr/device.h>
7 #include <zephyr/init.h>
8 #include <soc.h>
9 
gd32f3x0_init(void)10 static int gd32f3x0_init(void)
11 {
12 	SystemInit();
13 
14 	return 0;
15 }
16 
17 SYS_INIT(gd32f3x0_init, PRE_KERNEL_1, 0);
18