--- /dev/null
+/*###ICF### Section handled by ICF editor, don't touch! ****/\r
+/*-Editor annotation file-*/\r
+/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */\r
+/*-Specials-*/\r
+define symbol __ICFEDIT_intvec_start__      = 0x00000000;\r
+/*-Memory Regions-*/\r
+define symbol __ICFEDIT_region_ROM_start__  = 0x00000100;\r
+define symbol __ICFEDIT_region_ROM_end__    = 0x0003FFFF;\r
+define symbol __ICFEDIT_region_RAM_start__  = 0x00200000;\r
+define symbol __ICFEDIT_region_RAM_end__    = 0x0020FFFF;\r
+/*-Sizes-*/\r
+define symbol __ICFEDIT_size_cstack__   = 0x400;\r
+define symbol __ICFEDIT_size_svcstack__ = 0x100;\r
+define symbol __ICFEDIT_size_irqstack__ = 0x100;\r
+define symbol __ICFEDIT_size_fiqstack__ = 0x40;\r
+define symbol __ICFEDIT_size_undstack__ = 0x40;\r
+define symbol __ICFEDIT_size_abtstack__ = 0x40;\r
+define symbol __ICFEDIT_size_heap__     = 0x400;\r
+/**** End of ICF editor section. ###ICF###*/\r
+\r
+\r
+define memory mem with size = 4G;\r
+define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];\r
+define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];\r
+\r
+define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };\r
+define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };\r
+define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };\r
+define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };\r
+define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };\r
+define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };\r
+define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };\r
+\r
+initialize by copy { readwrite };\r
+do not initialize  { section .noinit };\r
+\r
+place at address mem:__ICFEDIT_intvec_start__    { readonly section .intvec };\r
+\r
+place in ROM_region   { readonly };\r
+place in RAM_region   { readwrite,\r
+                        block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,\r
+                        block UND_STACK, block ABT_STACK, block HEAP };\r
+\r