Mbed for VNG board

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Wed Nov 26 13:15:07 2014 +0000
Revision:
418:f79a1bf6b233
Parent:
362:61eea6f544d4
Synchronized with git revision 104e36bacba7e15ce5ccced435f2081d4eedafd5

Full URL: https://github.com/mbedmicro/mbed/commit/104e36bacba7e15ce5ccced435f2081d4eedafd5/

Targets: IAR Fixed NVIC RAM Vector space for NXP targets

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 362:61eea6f544d4 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
mbed_official 362:61eea6f544d4 2 /*-Editor annotation file-*/
mbed_official 362:61eea6f544d4 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
mbed_official 362:61eea6f544d4 4 /*-Specials-*/
mbed_official 362:61eea6f544d4 5 define symbol __ICFEDIT_intvec_start__ = 0x00000000;
mbed_official 362:61eea6f544d4 6 /*-Memory Regions-*/
mbed_official 362:61eea6f544d4 7 define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
mbed_official 362:61eea6f544d4 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0000FFFF;
mbed_official 418:f79a1bf6b233 9 define symbol __ICFEDIT_region_NVIC_start__ = 0x10000000;
mbed_official 418:f79a1bf6b233 10 define symbol __ICFEDIT_region_NVIC_end__ = 0x100000BF;
mbed_official 418:f79a1bf6b233 11 define symbol __ICFEDIT_region_RAM_start__ = 0x100000C0;
mbed_official 362:61eea6f544d4 12 define symbol __ICFEDIT_region_RAM_end__ = 0x10001FDF;
mbed_official 362:61eea6f544d4 13 /*-Sizes-*/
mbed_official 362:61eea6f544d4 14 define symbol __ICFEDIT_size_cstack__ = 0x800;
mbed_official 362:61eea6f544d4 15 define symbol __ICFEDIT_size_heap__ = 0x800;
mbed_official 362:61eea6f544d4 16 /**** End of ICF editor section. ###ICF###*/
mbed_official 362:61eea6f544d4 17
mbed_official 362:61eea6f544d4 18 define symbol __CRP_start__ = 0x000002FC;
mbed_official 362:61eea6f544d4 19 define symbol __CRP_end__ = 0x000002FF;
mbed_official 362:61eea6f544d4 20
mbed_official 362:61eea6f544d4 21 define symbol __region_USB_PKG_RAM_start__ = 0x20004000;
mbed_official 362:61eea6f544d4 22 define symbol __region_USB_PKG_RAM_end__ = 0x200047FF;
mbed_official 362:61eea6f544d4 23
mbed_official 362:61eea6f544d4 24 define symbol __RAM1_start__ = 0x20000000;
mbed_official 362:61eea6f544d4 25 define symbol __RAM1_end__ = 0x200007FF;
mbed_official 362:61eea6f544d4 26
mbed_official 362:61eea6f544d4 27 define memory mem with size = 4G;
mbed_official 362:61eea6f544d4 28 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__] - mem:[from __CRP_start__ to __CRP_end__];
mbed_official 362:61eea6f544d4 29 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
mbed_official 362:61eea6f544d4 30 define region CRP_region = mem:[from __CRP_start__ to __CRP_end__];
mbed_official 362:61eea6f544d4 31 define region USB_PKG_RAM_region = mem:[from __region_USB_PKG_RAM_start__ to __region_USB_PKG_RAM_end__];
mbed_official 362:61eea6f544d4 32 define region RAM1_region = mem:[from __RAM1_start__ to __RAM1_end__];
mbed_official 362:61eea6f544d4 33
mbed_official 362:61eea6f544d4 34 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
mbed_official 362:61eea6f544d4 35 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
mbed_official 362:61eea6f544d4 36
mbed_official 362:61eea6f544d4 37 initialize by copy { readwrite };
mbed_official 362:61eea6f544d4 38 do not initialize { section .noinit };
mbed_official 362:61eea6f544d4 39
mbed_official 362:61eea6f544d4 40 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
mbed_official 362:61eea6f544d4 41 place in ROM_region { readonly };
mbed_official 362:61eea6f544d4 42 place in RAM_region { readwrite,
mbed_official 418:f79a1bf6b233 43 block HEAP, block CSTACK };
mbed_official 362:61eea6f544d4 44 place in CRP_region { section .crp };
mbed_official 362:61eea6f544d4 45 place in USB_PKG_RAM_region
mbed_official 362:61eea6f544d4 46 { readwrite data section USB_PACKET_MEMORY };
mbed_official 362:61eea6f544d4 47 place in RAM1_region { section .sram };