2015-10-01 07:14:50 +02:00
|
|
|
#ifndef _SECTIONS_H_
|
|
|
|
#define _SECTIONS_H_
|
|
|
|
|
|
|
|
#define TEXT_SECTION_ATTR __attribute__((section(".text")))
|
2016-10-14 00:49:58 +02:00
|
|
|
#define RAM_CONST_SECTION_ATTR __attribute((section(".data")))
|
2015-10-01 07:14:50 +02:00
|
|
|
|
|
|
|
#endif
|