28 lines
771 B
CMake
28 lines
771 B
CMake
zephyr_library()
|
|
|
|
zephyr_library_sources(
|
|
exc_exit.S
|
|
irq_init.c
|
|
swap.c
|
|
swap_helper.S
|
|
fault.c
|
|
irq_manage.c
|
|
thread.c
|
|
cpu_idle.S
|
|
fault_s.S
|
|
fatal.c
|
|
sys_fatal_error_handler.c
|
|
thread_abort.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_GEN_SW_ISR_TABLE isr_wrapper.S)
|
|
zephyr_library_sources_ifdef(CONFIG_CPLUSPLUS __aeabi_atexit.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IRQ_OFFLOAD irq_offload.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CPU_CORTEX_M0 irq_relay.S)
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE userspace.S)
|
|
|
|
add_subdirectory_ifdef(CONFIG_CPU_CORTEX_M cortex_m)
|
|
add_subdirectory_ifdef(CONFIG_ARM_CORE_MPU cortex_m/mpu)
|
|
add_subdirectory_ifdef(CONFIG_CPU_CORTEX_M_HAS_CMSE cortex_m/cmse)
|
|
add_subdirectory_ifdef(CONFIG_ARM_SECURE_FIRMWARE cortex_m/tz)
|