You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
|
|
#ifndef _DEFINES_H |
|
#define _DEFINES_H |
|
|
|
#define __attribute_const__ __attribute__((__const__)) |
|
|
|
/* type properties */ |
|
#define __packed __attribute__((packed)) |
|
#define __aligned(alignment) __attribute__((aligned(alignment))) |
|
#define __unused __attribute__((unused)) |
|
|
|
/* linkage */ |
|
#define __section(name) __attribute__((section(name))) |
|
|
|
/* force placement in zero-waitstate memory */ |
|
#define __ramtext __section(".ramtext") |
|
|
|
#endif /* !_DEFINES_H */
|
|
|