2016-04-22 05:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-04-22 05:47:09 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_NIOS2_ASM_INLINE_H_
|
|
|
|
#define ZEPHYR_INCLUDE_ARCH_NIOS2_ASM_INLINE_H_
|
2016-04-22 05:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The file must not be included directly
|
2016-11-06 07:52:29 +08:00
|
|
|
* Include kernel.h instead
|
2016-04-22 05:47:09 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#include <arch/nios2/asm_inline_gcc.h>
|
|
|
|
#else
|
|
|
|
#include <arch/nios2/asm_inline_other.h>
|
|
|
|
#endif
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_NIOS2_ASM_INLINE_H_ */
|