Fix data copy address error ()

* Fix data copy address error

Co-authored-by: Jinping Wu <jinping.wu@verisilicon.com>
pull/633/head^2
thomas-coding committed by GitHub
parent ac5bf3b934
commit e66c4a93ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save