mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7486 from marcuschangarm/fix-nrf52-iar
Fix linker script for NRF52840/IARpull/7502/head
commit
f4c936f455
|
@ -60,7 +60,6 @@ place at address mem:__ICFEDIT_region_RAM_NVIC_start__ { section .nvictable };
|
|||
do not initialize { section .noinit };
|
||||
place in RAM_region { section .noinit };
|
||||
|
||||
|
||||
keep { section .intvec };
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
place in ROM_region { readonly };
|
||||
|
|
|
@ -54,8 +54,11 @@ define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
|||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||
|
||||
initialize by copy { readwrite };
|
||||
do not initialize { section .nvictable };
|
||||
place at address mem:__ICFEDIT_region_RAM_NVIC_start__ { section .nvictable };
|
||||
|
||||
do not initialize { section .noinit };
|
||||
place at address mem:__ICFEDIT_region_RAM_NVIC_start__ { section .noinit };
|
||||
place in RAM_region { section .noinit };
|
||||
|
||||
keep { section .intvec };
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
|
|
Loading…
Reference in New Issue