1# Copyright (c) 2024 Michael Hope
2# Copyright (c) 2024 Jianxiong Gu
3# SPDX-License-Identifier: Apache-2.0
4
5config SOC_FAMILY_CH32V
6	select RISCV
7	select BUILD_OUTPUT_HEX
8	select CH32V00X_SYSTICK
9	select ATOMIC_OPERATIONS_C
10	imply XIP
11
12if SOC_FAMILY_CH32V
13
14config VECTOR_TABLE_SIZE
15	int "Number of Interrupt and Exception Vectors"
16	range 20 256
17	help
18	  This option defines the total number of interrupt and exception
19	  vectors in the vector table.
20
21rsource "*/Kconfig"
22
23endif # SOC_FAMILY_CH32V
24