sections.h 174 B

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