Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
116:c0f6e94411f5
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 116:c0f6e94411f5 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
Kojto 116:c0f6e94411f5 2 /*-Editor annotation file-*/
Kojto 116:c0f6e94411f5 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
Kojto 116:c0f6e94411f5 4 /*-Specials-*/
Kojto 116:c0f6e94411f5 5 define symbol __ICFEDIT_intvec_start__ = 0x18004000;
Kojto 116:c0f6e94411f5 6 /*-Memory Regions-*/
Kojto 116:c0f6e94411f5 7 define symbol __ICFEDIT_region_ROM_start__ = 0x18000000;
Kojto 116:c0f6e94411f5 8 define symbol __ICFEDIT_region_ROM_end__ = 0x187FFFFF;
Kojto 116:c0f6e94411f5 9 define symbol __ICFEDIT_region_TTB_start__ = 0x20000000;
Kojto 116:c0f6e94411f5 10 define symbol __ICFEDIT_region_TTB_end__ = 0x2001FFFF;
Kojto 116:c0f6e94411f5 11 define symbol __ICFEDIT_region_RAM_start__ = 0x20020000;
Kojto 116:c0f6e94411f5 12 define symbol __ICFEDIT_region_RAM_end__ = 0x209FFFFF;
Kojto 116:c0f6e94411f5 13
Kojto 116:c0f6e94411f5 14 /*-Sizes-*/
Kojto 116:c0f6e94411f5 15 define symbol __ICFEDIT_size_cstack__ = 0x00004000;
Kojto 116:c0f6e94411f5 16 define symbol __ICFEDIT_size_svcstack__ = 0x00008000;
Kojto 116:c0f6e94411f5 17 define symbol __ICFEDIT_size_irqstack__ = 0x00008000;
Kojto 116:c0f6e94411f5 18 define symbol __ICFEDIT_size_fiqstack__ = 0x00000100;
Kojto 116:c0f6e94411f5 19 define symbol __ICFEDIT_size_undstack__ = 0x00000100;
Kojto 116:c0f6e94411f5 20 define symbol __ICFEDIT_size_abtstack__ = 0x00000100;
Kojto 116:c0f6e94411f5 21 define symbol __ICFEDIT_size_heap__ = 0x00080000;
Kojto 116:c0f6e94411f5 22 /**** End of ICF editor section. ###ICF###*/
Kojto 116:c0f6e94411f5 23
Kojto 116:c0f6e94411f5 24 define symbol __ICFEDIT_region_RetRAM_start__ = 0x20000000;
Kojto 116:c0f6e94411f5 25 define symbol __ICFEDIT_region_RetRAM_end__ = 0x2001FFFF;
Kojto 116:c0f6e94411f5 26
Kojto 116:c0f6e94411f5 27 define symbol __ICFEDIT_region_MirrorRAM_start__ = 0x60900000;
Kojto 116:c0f6e94411f5 28 define symbol __ICFEDIT_region_MirrorRAM_end__ = 0x609FFFFF;
Kojto 116:c0f6e94411f5 29
Kojto 116:c0f6e94411f5 30 define symbol __ICFEDIT_region_MirrorRetRAM_start__ = 0x60000000;
Kojto 116:c0f6e94411f5 31 define symbol __ICFEDIT_region_MirrorRetRAM_end__ = 0x6001FFFF;
Kojto 116:c0f6e94411f5 32
Kojto 116:c0f6e94411f5 33 define memory mem with size = 4G;
Kojto 116:c0f6e94411f5 34
Kojto 116:c0f6e94411f5 35 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
Kojto 116:c0f6e94411f5 36 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
Kojto 116:c0f6e94411f5 37 define region RetRAM_region = mem:[from __ICFEDIT_region_RetRAM_start__ to __ICFEDIT_region_RetRAM_end__];
Kojto 116:c0f6e94411f5 38 define region MirrorRAM_region = mem:[from __ICFEDIT_region_MirrorRAM_start__ to __ICFEDIT_region_MirrorRAM_end__];
Kojto 116:c0f6e94411f5 39 define region MirrorRetRAM_region = mem:[from __ICFEDIT_region_MirrorRetRAM_start__ to __ICFEDIT_region_MirrorRetRAM_end__];
Kojto 116:c0f6e94411f5 40
Kojto 116:c0f6e94411f5 41 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
Kojto 116:c0f6e94411f5 42 define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
Kojto 116:c0f6e94411f5 43 define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
Kojto 116:c0f6e94411f5 44 define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
Kojto 116:c0f6e94411f5 45 define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
Kojto 116:c0f6e94411f5 46 define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
Kojto 116:c0f6e94411f5 47 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
Kojto 116:c0f6e94411f5 48
Kojto 116:c0f6e94411f5 49 initialize by copy { readwrite };
Kojto 116:c0f6e94411f5 50 do not initialize { section .noinit };
Kojto 116:c0f6e94411f5 51 do not initialize { section MMU_TT };
Kojto 116:c0f6e94411f5 52
Kojto 116:c0f6e94411f5 53 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
Kojto 116:c0f6e94411f5 54
Kojto 116:c0f6e94411f5 55 place in ROM_region { readonly };
Kojto 116:c0f6e94411f5 56 place in RAM_region { readwrite,
Kojto 116:c0f6e94411f5 57 block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
Kojto 116:c0f6e94411f5 58 block UND_STACK, block ABT_STACK, block HEAP };
Kojto 116:c0f6e94411f5 59
Kojto 116:c0f6e94411f5 60 place in RetRAM_region { section .retram };
Kojto 116:c0f6e94411f5 61 place in MirrorRAM_region { section .mirrorram };
Kojto 116:c0f6e94411f5 62 place in MirrorRetRAM_region { section .mirrorretram };