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_ROM_start__   = 0x00000000;
8define symbol __ICFEDIT_region_ROM_end__     = 0x0007FFFF;
9define symbol __ICFEDIT_region_RAM_start__   = 0x20000000;
10define symbol __ICFEDIT_region_RAM_end__     = 0x2001FFFF;
11/*-Sizes-*/
12define symbol __ICFEDIT_size_cstack__   = 0x200;
13define symbol __ICFEDIT_size_heap__     = 0x200;
14/**** End of ICF editor section. ###ICF###*/
15
16define symbol FlashConfig_start__= 0x00000400;
17define symbol FlashConfig_end__  = 0x0000040f;
18
19define memory mem with size = 4G;
20define region ROM_region   = mem:[from __ICFEDIT_region_ROM_start__ to (FlashConfig_start__ - 1)] | [from (FlashConfig_end__+1)  to __ICFEDIT_region_ROM_end__];
21define region RAM_region   = mem:[from __ICFEDIT_region_RAM_start__   to __ICFEDIT_region_RAM_end__];
22
23define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };
24define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };
25
26define region FlashConfig_region = mem:[from FlashConfig_start__ to FlashConfig_end__];
27
28initialize by copy { readwrite };
29initialize by copy with packing = none { section __DLIB_PERTHREAD }; // Required in a multi-threaded application
30do not initialize  { section .noinit };
31
32place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
33
34place in ROM_region   { readonly };
35place in RAM_region   { readwrite,
36                        block CSTACK, block HEAP };
37
38place in FlashConfig_region
39                      {section FlashConfig};
40
41place in RAM_region { last section FREE_MEM};
42
43