1 /* 2 * Copyright (c) 2015, Xilinx Inc. and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /* 8 * @file cpu.h 9 * @brief CPU primitives for libmetal. 10 */ 11 12 #ifndef __METAL_CPU__H__ 13 #define __METAL_CPU__H__ 14 15 #include <metal/config.h> 16 17 #if defined(HAVE_PROCESSOR_CPU_H) 18 # include <metal/processor/@PROJECT_PROCESSOR@/cpu.h> 19 #else 20 # include <metal/processor/generic/cpu.h> 21 #endif 22 23 #endif /* __METAL_CPU__H__ */ 24