1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_include_directories(${CONFIG_SOC})
4
5zephyr_sources(
6  start.S
7  soc_irq.S
8)
9
10zephyr_sources_ifdef(CONFIG_SOC_ANDES_V5_PMA pma.c)
11zephyr_sources_ifdef(CONFIG_SOC_ANDES_V5_L2_CACHE l2_cache.c)
12
13# Note: AndeStar V5 DSP needs custom Andes V5 toolchain
14if(CONFIG_SOC_ANDES_V5_HWDSP)
15  zephyr_cc_option(-mext-dsp)
16endif()
17