blob: ca5ae63668f70f6f2191c52cfdb8c303e003572a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
MEMORY
{
ram (rwx) : ORIGIN = 0x100000, LENGTH = 144M
}
SECTIONS
{
.text :
{
INPUT_SECTION_FLAGS (!SHF_TLS) *(EXCLUDE_FILE (section-flags-1.o) .text .text.* .text_* .gnu.linkonce.t.*)
} >ram
}
|