This commit adds a preliminary implementation of CMSIS-Core(R) for use with the ARM Cortex-R port. At this time, CMSIS-Core(R) is not merged back into the upstream CMSIS repository and therefore is not available from official sources. Until upstream merge happens, the preliminary version can be obtained from the following URL: https://github.com/stephanosio/CMSIS_5/tree/core_r Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HAS_CMSIS_CORE
|
|
bool
|
|
select HAS_CMSIS_CORE_M if CPU_CORTEX_M
|
|
select HAS_CMSIS_CORE_R if CPU_CORTEX_R
|
|
|
|
if HAS_CMSIS_CORE
|
|
|
|
config HAS_CMSIS_CORE_M
|
|
bool
|
|
|
|
config HAS_CMSIS_CORE_R
|
|
bool
|
|
|
|
endif
|