teralytic / mbed-dev

Fork of mbed by teralytic

Committer:
<>
Date:
Fri Sep 02 15:07:44 2016 +0100
Revision:
144:ef7eb2e8f9f7
This updates the lib to the mbed lib v125

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 144:ef7eb2e8f9f7 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
<> 144:ef7eb2e8f9f7 2 /*-Editor annotation file-*/
<> 144:ef7eb2e8f9f7 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
<> 144:ef7eb2e8f9f7 4 /*-Specials-*/
<> 144:ef7eb2e8f9f7 5 define symbol __ICFEDIT_intvec_start__ = 0x08000000;
<> 144:ef7eb2e8f9f7 6 /*-Memory Regions-*/
<> 144:ef7eb2e8f9f7 7 define symbol __ICFEDIT_region_ROM_start__ = 0x08000000;
<> 144:ef7eb2e8f9f7 8 define symbol __ICFEDIT_region_ROM_end__ = 0x081FFFFF;
<> 144:ef7eb2e8f9f7 9 define symbol __ICFEDIT_region_NVIC_start__ = 0x20000000;
<> 144:ef7eb2e8f9f7 10 define symbol __ICFEDIT_region_NVIC_end__ = 0x200001AF;
<> 144:ef7eb2e8f9f7 11 define symbol __ICFEDIT_region_RAM_start__ = 0x200001B0;
<> 144:ef7eb2e8f9f7 12 define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF;
<> 144:ef7eb2e8f9f7 13 define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000;
<> 144:ef7eb2e8f9f7 14 define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF;
<> 144:ef7eb2e8f9f7 15 /*-Sizes-*/
<> 144:ef7eb2e8f9f7 16 /*Heap 1/4 of ram and stack 1/8*/
<> 144:ef7eb2e8f9f7 17 define symbol __ICFEDIT_size_cstack__ = 0x6000;
<> 144:ef7eb2e8f9f7 18 define symbol __ICFEDIT_size_heap__ = 0xC000;
<> 144:ef7eb2e8f9f7 19 /**** End of ICF editor section. ###ICF###*/
<> 144:ef7eb2e8f9f7 20
<> 144:ef7eb2e8f9f7 21
<> 144:ef7eb2e8f9f7 22 define memory mem with size = 4G;
<> 144:ef7eb2e8f9f7 23 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
<> 144:ef7eb2e8f9f7 24 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
<> 144:ef7eb2e8f9f7 25 define region CCMRAM_region = mem:[from __ICFEDIT_region_CCMRAM_start__ to __ICFEDIT_region_CCMRAM_end__];
<> 144:ef7eb2e8f9f7 26
<> 144:ef7eb2e8f9f7 27 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
<> 144:ef7eb2e8f9f7 28 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
<> 144:ef7eb2e8f9f7 29
<> 144:ef7eb2e8f9f7 30 initialize by copy { readwrite };
<> 144:ef7eb2e8f9f7 31 do not initialize { section .noinit };
<> 144:ef7eb2e8f9f7 32
<> 144:ef7eb2e8f9f7 33 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
<> 144:ef7eb2e8f9f7 34
<> 144:ef7eb2e8f9f7 35 place in ROM_region { readonly };
<> 144:ef7eb2e8f9f7 36 place in RAM_region { readwrite,
<> 144:ef7eb2e8f9f7 37 block CSTACK, block HEAP };