]> git.sur5r.net Git - freertos/commitdiff
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1391 1d2547de-c912-0410...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 25 Apr 2011 15:00:34 +0000 (15:00 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 25 Apr 2011 15:00:34 +0000 (15:00 +0000)
Demo/CORTEX_A2F200_IAR_and_Keil/IAR_System/linker_nvm.icf [new file with mode: 0644]

diff --git a/Demo/CORTEX_A2F200_IAR_and_Keil/IAR_System/linker_nvm.icf b/Demo/CORTEX_A2F200_IAR_and_Keil/IAR_System/linker_nvm.icf
new file mode 100644 (file)
index 0000000..a405427
--- /dev/null
@@ -0,0 +1,42 @@
+/*###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__ = 0x0;\r
+/*-Memory Regions-*/\r
+define symbol __ICFEDIT_region_ROM_start__ = 0xc0;\r
+define symbol __ICFEDIT_region_ROM_end__   = 0x40000;\r
+define symbol __ICFEDIT_region_RAM_start__ = 0x20000000;\r
+define symbol __ICFEDIT_region_RAM_end__   = 0x2000FFFF;\r
+/*-Sizes-*/\r
+define symbol __ICFEDIT_size_cstack__   = 0x2800;\r
+define symbol __ICFEDIT_size_svcstack__ = 0x400;\r
+define symbol __ICFEDIT_size_irqstack__ = 0x400;\r
+define symbol __ICFEDIT_size_fiqstack__ = 0x400;\r
+define symbol __ICFEDIT_size_undstack__ = 0x400;\r
+define symbol __ICFEDIT_size_abtstack__ = 0x400;\r
+define symbol __ICFEDIT_size_heap__     = 0x7000;\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 };
\ No newline at end of file