1# GD32VF103 SOC configuration options
2
3# Copyright (c) 2021 Tokita, Hiroshi <tokita.hiroshi@gmail.com>
4# SPDX-License-Identifier: Apache-2.0
5
6choice
7	prompt "GigaDevice GD32VF103 SOC implementation"
8	depends on SOC_SERIES_GD32VF103
9
10config SOC_GD32VF103
11	bool "GD32VF103"
12	select RISCV_ISA_RV32I
13	select RISCV_ISA_EXT_M
14	select RISCV_ISA_EXT_A
15	select RISCV_ISA_EXT_C
16	select RISCV_ISA_EXT_ZICSR
17	select RISCV_ISA_EXT_ZIFENCEI
18
19endchoice
20