2015-04-28 01:40:11 +08:00
|
|
|
/* Intel ARM inline assembler functions and macros for public functions */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
/*
|
2015-04-28 01:40:11 +08:00
|
|
|
* Copyright (c) 2015, Wind River Systems, Inc.
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_ARM_CORTEX_M_ASM_INLINE_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ARCH_ARM_CORTEX_M_ASM_INLINE_H_
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-04-28 01:40:11 +08:00
|
|
|
/*
|
|
|
|
* The file must not be included directly
|
2016-11-06 07:52:29 +08:00
|
|
|
* Include kernel.h instead
|
2015-04-28 01:40:11 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
2018-06-09 04:34:16 +08:00
|
|
|
#include <arch/arm/asm_inline_gcc.h>
|
2015-04-28 01:40:11 +08:00
|
|
|
#else
|
2018-06-09 04:34:16 +08:00
|
|
|
#include <arch/arm/asm_inline_other.h>
|
2015-04-28 01:40:11 +08:00
|
|
|
#endif
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_ARM_CORTEX_M_ASM_INLINE_H_ */
|