blob: ebf0e3fea355540125bb0dd9291cf1b7eadb85f5 [file] [log] [blame]
/*
* Copyright (c) Copyright (c) 2021 BrainCo Inc.
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <soc.h>
static int gd32f3x0_init(void)
{
SystemInit();
return 0;
}
SYS_INIT(gd32f3x0_init, PRE_KERNEL_1, 0);