mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
Fix data copy address error (#632)
* Fix data copy address error Co-authored-by: Jinping Wu <jinping.wu@verisilicon.com>
This commit is contained in:
parent
ac5bf3b934
commit
e66c4a93ee
1 changed files with 17 additions and 17 deletions
|
@ -56,7 +56,6 @@ SECTIONS
|
|||
*(.rodata*)
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_sidata = _etext;
|
||||
} > FLASH
|
||||
|
||||
.ARM.extab :
|
||||
|
@ -83,9 +82,10 @@ SECTIONS
|
|||
. += M_VECTOR_RAM_SIZE;
|
||||
. = ALIGN(4);
|
||||
__interrupts_ram_end = .;
|
||||
|
||||
} > RAM
|
||||
|
||||
_sidata = LOADADDR(.data);
|
||||
|
||||
.data : /* AT ( _sidata ) */
|
||||
{
|
||||
. = ALIGN(4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue