1/*###ICF### Section handled by ICF editor, don't touch! ****/ 2/*-Editor annotation file-*/ 3/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */ 4/*-Specials-*/ 5define symbol __ICFEDIT_intvec_start__ = 0x00000000; 6/*-Memory Regions-*/ 7define symbol __ICFEDIT_region_text_start__ = 0x10000000; 8define symbol __ICFEDIT_region_text_end__ = 0x1002FFFF; 9define symbol __ICFEDIT_region_data_start__ = 0x10030000; 10define symbol __ICFEDIT_region_data_end__ = 0x1003FFFF; 11/*-Sizes-*/ 12define symbol __ICFEDIT_size_cstack__ = 0x400; 13define symbol __ICFEDIT_size_heap__ = 0x000; 14/**** End of ICF editor section. ###ICF###*/ 15 16define memory mem with size = 4G; 17define region text_region = mem:[from __ICFEDIT_region_text_start__ to __ICFEDIT_region_text_end__]; 18define region data_region = mem:[from __ICFEDIT_region_data_start__ to __ICFEDIT_region_data_end__]; 19 20keep { section .resource_table }; 21".resource_table" : place in data_region {section .resource_table}; 22 23/* Create region for OPENAMP */ 24/* !!! These 4 lines can be commented if OPENAMP is not used !!!*/ 25define symbol __OPENAMP_region_start__ = 0x10040000; 26define symbol __OPENAMP_region_size__ = 0x8000; 27export symbol __OPENAMP_region_start__; 28export symbol __OPENAMP_region_size__; 29 30define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 31define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 32 33initialize by copy { readwrite }; 34do not initialize { section .noinit}; 35 36place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 37place in text_region { readonly }; 38place in data_region { readwrite, 39 block CSTACK, block HEAP}; 40