You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
179 B
Plaintext
13 lines
179 B
Plaintext
5 years ago
|
SECTIONS
|
||
|
{
|
||
|
. = 0xffff0000;
|
||
|
start = .;
|
||
|
.head : {
|
||
|
KEEP(*(.head))
|
||
|
}
|
||
|
. = 0xffff1000;
|
||
|
.text : { *(.text*) *(.sfpr) *(.rodata*) }
|
||
|
.data : { *(.data*) }
|
||
|
.bss : { *(.bss*) }
|
||
|
}
|