1 /*
2  * Copyright 2014-2016 Freescale Semiconductor, Inc.
3  * Copyright 2016-2023 NXP
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef __FSL_DEVICE_REGISTERS_H__
9 #define __FSL_DEVICE_REGISTERS_H__
10 
11 /*
12  * Include the cpu specific register header files.
13  *
14  * The CPU macro should be declared in the project or makefile.
15  */
16 #if (defined(CPU_MCXN947VDF_cm33_core0) || defined(CPU_MCXN947VNL_cm33_core0))
17 
18 #define MCXN947_cm33_core0_SERIES
19 
20 /* CMSIS-style register definitions */
21 #include "MCXN947_cm33_core0.h"
22 /* CPU specific feature definitions */
23 #include "MCXN947_cm33_core0_features.h"
24 
25 #elif (defined(CPU_MCXN947VDF_cm33_core1) || defined(CPU_MCXN947VNL_cm33_core1))
26 
27 #define MCXN947_cm33_core1_SERIES
28 
29 /* CMSIS-style register definitions */
30 #include "MCXN947_cm33_core1.h"
31 /* CPU specific feature definitions */
32 #include "MCXN947_cm33_core1_features.h"
33 
34 #else
35 #error "No valid CPU defined!"
36 #endif
37 
38 #endif /* __FSL_DEVICE_REGISTERS_H__ */
39 
40 /*******************************************************************************
41  * EOF
42  ******************************************************************************/
43