Fix TMPM64B IAR linker file

Remove unnecessary manual inclusion of tmpm64b_fc object file in linker script
pull/7791/head
David Saada 2018-06-13 17:22:58 +03:00
parent 54f40a0f4f
commit f810e77d87
1 changed files with 3 additions and 3 deletions

View File

@ -25,11 +25,11 @@ define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFED
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
define block FLASH_CODE_ROM {section FLASH_ROM_init object flash_api.o, section .text_init object tmpm46b_fc.o};
define block FLASH_CODE_RAM {section FLASH_ROM object flash_api.o, section .text object tmpm46b_fc.o};
define block FLASH_CODE_ROM {section FLASH_ROM_init object flash_api.o};
define block FLASH_CODE_RAM {section FLASH_ROM object flash_api.o};
initialize by copy { readwrite };
initialize manually { section FLASH_ROM object flash_api.o, section .text object tmpm46b_fc.o};
initialize manually { section FLASH_ROM object flash_api.o };
do not initialize { section .noinit };
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };