|
@@ -10,6 +10,7 @@ MEMORY
|
|
DATA (rw) : ORIGIN = 0x20000000, LENGTH = 0x00010000
|
|
DATA (rw) : ORIGIN = 0x20000000, LENGTH = 0x00010000
|
|
}
|
|
}
|
|
ENTRY(Reset_Handler)
|
|
ENTRY(Reset_Handler)
|
|
|
|
+_system_tack_size = 0x100;
|
|
|
|
|
|
SECTIONS
|
|
SECTIONS
|
|
{
|
|
{
|
|
@@ -83,6 +84,8 @@ SECTIONS
|
|
. = ALIGN(4);
|
|
. = ALIGN(4);
|
|
/* This is used by the startup in order to initialize the .bss secion */
|
|
/* This is used by the startup in order to initialize the .bss secion */
|
|
_ebss = . ;
|
|
_ebss = . ;
|
|
|
|
+ . = . + _system_tack_size;
|
|
|
|
+ . = ALIGN(4);
|
|
_estack = .;
|
|
_estack = .;
|
|
|
|
|
|
*(.bss.init)
|
|
*(.bss.init)
|