mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-20 07:13:55 +08: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:
@ -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);
|
||||
|
Reference in New Issue
Block a user