13 lines
177 B
Plaintext
13 lines
177 B
Plaintext
|
ENTRY(_core_init)
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x40000000;
|
||
|
.text : { *(.text) }
|
||
|
.data : { *(.text) }
|
||
|
.bss : { *(.bss COMMON) }
|
||
|
. = ALIGN(10);
|
||
|
. = . + 0x1000;
|
||
|
stack_ptr = . ;
|
||
|
}
|