]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/metal/itim.h
Rename RISC-V_RV32_SiFive_HiFive1-FreedomStudio directory to RISC-V_RV32_SiFive_HiFiv...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio / freedom-metal / metal / itim.h
1 /* Copyright 2018 SiFive, Inc */
2 /* SPDX-License-Identifier: Apache-2.0 */
3
4 #ifndef METAL__ITIM_H
5 #define METAL__ITIM_H
6
7 /*! @file itim.h
8  *
9  * API for manipulating ITIM allocation
10  */
11
12
13 /*! @def METAL_PLACE_IN_ITIM
14  * @brief Link a function into the ITIM
15  *
16  * Link a function into the ITIM (Instruction Tightly Integrated
17  * Memory) if the ITIM is present on the target device.
18  */
19 #define METAL_PLACE_IN_ITIM     __attribute__((section(".itim")))
20
21 #endif