1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #ifndef ZEPHYR_MODULES_CMSIS_CMSIS_H_
7 #define ZEPHYR_MODULES_CMSIS_CMSIS_H_
8 
9 #if defined(CONFIG_CPU_CORTEX_M)
10 #include "cmsis_core_m.h"
11 #elif defined(CONFIG_CPU_AARCH32_CORTEX_A) || defined(CONFIG_CPU_AARCH32_CORTEX_R)
12 #include "cmsis_core_a_r.h"
13 #endif
14 
15 #endif /* ZEPHYR_MODULES_CMSIS_CMSIS_H_ */
16