2018-11-25 17:40:57 +08:00
|
|
|
# Copyright (c) 2018 Foundries.io Ltd
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
if(CONFIG_SOC_OPENISA_RV32M1_RI5CY)
|
|
|
|
if (CONFIG_RISCV_GENERIC_TOOLCHAIN)
|
|
|
|
zephyr_compile_options(-march=rv32imc)
|
|
|
|
else()
|
|
|
|
zephyr_compile_options(-march=rv32imcxpulpv2)
|
|
|
|
endif()
|
|
|
|
elseif(CONFIG_SOC_OPENISA_RV32M1_ZERO_RISCY)
|
|
|
|
zephyr_compile_options(-march=rv32imc)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
zephyr_sources(
|
|
|
|
vector.S
|
|
|
|
soc_irq.S
|
|
|
|
wdog.S
|
|
|
|
soc.c
|
|
|
|
)
|
2019-11-29 20:31:53 +08:00
|
|
|
|
2020-01-17 21:36:19 +08:00
|
|
|
zephyr_linker_sources(ROM_START SORT_KEY 0x0vectors vector_table.ld)
|