1 /*
2  * Copyright (c) 2024 Nuvoton Technology Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _NUVOTON_NPCM_SOC_H_
8 #define _NUVOTON_NPCM_SOC_H_
9 
10 /* CMSIS required definitions */
11 #define __FPU_PRESENT CONFIG_CPU_HAS_FPU
12 #define __MPU_PRESENT CONFIG_CPU_HAS_ARM_MPU
13 
14 /* Add include for DTS generated information */
15 #include <zephyr/devicetree.h>
16 #include <cmsis_core_m_defaults.h>
17 
18 #endif /* _NUVOTON_NPCM_SOC_H_ */
19