mirror of https://github.com/ARMmbed/mbed-os.git
NRF52: attempt to complete 86ce955d96 for ARMCC and IAR
parent
86ce955d96
commit
124e15f196
|
|
@ -35,7 +35,7 @@ LR_IROM1 MBED_APP_START MBED_APP_SIZE {
|
||||||
.ANY (+RO)
|
.ANY (+RO)
|
||||||
}
|
}
|
||||||
RW_IRAM0 MBED_RAM0_START UNINIT MBED_RAM0_SIZE { ;no init section
|
RW_IRAM0 MBED_RAM0_START UNINIT MBED_RAM0_SIZE { ;no init section
|
||||||
*(*noinit)
|
*(*nvictable)
|
||||||
}
|
}
|
||||||
RW_IRAM1 MBED_RAM1_START MBED_RAM1_SIZE {
|
RW_IRAM1 MBED_RAM1_START MBED_RAM1_SIZE {
|
||||||
.ANY (+RW +ZI)
|
.ANY (+RW +ZI)
|
||||||
|
|
|
||||||
|
|
@ -54,8 +54,12 @@ define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
||||||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||||
|
|
||||||
initialize by copy { readwrite };
|
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 };
|
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 };
|
keep { section .intvec };
|
||||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue