sections.h 187 B

1234567
  1. #ifndef _SECTIONS_H_
  2. #define _SECTIONS_H_
  3. #define TEXT_SECTION_ATTR __attribute__((section(".iram0.text")))
  4. #define RAM_CONST_SECTION_ATTR __attribute((section(".rodata.dram")))
  5. #endif