mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
<>
Date:
Fri Sep 30 18:07:01 2016 +0100
Revision:
148:21d94c44109e
This updates the lib to the mbed lib v127

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 148:21d94c44109e 1 /* [ROM = 256kb = 0x40000] */
<> 148:21d94c44109e 2 define symbol __intvec_start__ = 0x08000000;
<> 148:21d94c44109e 3 define symbol __region_ROM_start__ = 0x08000000;
<> 148:21d94c44109e 4 define symbol __region_ROM_end__ = 0x0803FFFF;
<> 148:21d94c44109e 5
<> 148:21d94c44109e 6 /* [RAM = 32kb = 0x8000] Vector table dynamic copy: 73 vectors = 292 bytes (0x124) to be reserved in RAM */
<> 148:21d94c44109e 7 define symbol __NVIC_start__ = 0x20000000;
<> 148:21d94c44109e 8 define symbol __NVIC_end__ = 0x20000127; /* Add 4 more bytes to be aligned on 8 bytes */
<> 148:21d94c44109e 9 define symbol __region_RAM_start__ = 0x20000128;
<> 148:21d94c44109e 10 define symbol __region_RAM_end__ = 0x20007FFF;
<> 148:21d94c44109e 11
<> 148:21d94c44109e 12 /* Memory regions */
<> 148:21d94c44109e 13 define memory mem with size = 4G;
<> 148:21d94c44109e 14 define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__];
<> 148:21d94c44109e 15 define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
<> 148:21d94c44109e 16
<> 148:21d94c44109e 17 /* Stack and Heap */
<> 148:21d94c44109e 18 define symbol __size_cstack__ = 0x800;
<> 148:21d94c44109e 19 define symbol __size_heap__ = 0x800;
<> 148:21d94c44109e 20 define block CSTACK with alignment = 8, size = __size_cstack__ { };
<> 148:21d94c44109e 21 define block HEAP with alignment = 8, size = __size_heap__ { };
<> 148:21d94c44109e 22 define block STACKHEAP with fixed order { block HEAP, block CSTACK };
<> 148:21d94c44109e 23
<> 148:21d94c44109e 24 initialize by copy with packing = zeros { readwrite };
<> 148:21d94c44109e 25 do not initialize { section .noinit };
<> 148:21d94c44109e 26
<> 148:21d94c44109e 27 place at address mem:__intvec_start__ { readonly section .intvec };
<> 148:21d94c44109e 28
<> 148:21d94c44109e 29 place in ROM_region { readonly };
<> 148:21d94c44109e 30 place in RAM_region { readwrite, block STACKHEAP };