mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-08-18 11:29:49 +08:00
Refactor all processor headers which had the same content into a generic set, to reduce the number of duplicates. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
24 lines
440 B
C
24 lines
440 B
C
/*
|
|
* Copyright (c) 2015, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file cpu.h
|
|
* @brief CPU primitives for libmetal.
|
|
*/
|
|
|
|
#ifndef __METAL_CPU__H__
|
|
#define __METAL_CPU__H__
|
|
|
|
#include <metal/config.h>
|
|
|
|
#if defined(HAVE_PROCESSOR_CPU_H)
|
|
# include <metal/processor/@PROJECT_PROCESSOR@/cpu.h>
|
|
#else
|
|
# include <metal/processor/generic/cpu.h>
|
|
#endif
|
|
|
|
#endif /* __METAL_CPU__H__ */
|