]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M4F_CEC1302_Keil/GCC_Specific/mem.ld
f9b07a69169282957eb8842275ac31284921708f
[freertos] / FreeRTOS / Demo / CORTEX_M4F_CEC1302_Keil / GCC_Specific / mem.ld
1 /*\r
2  * Memory Spaces Definitions.\r
3  *\r
4  * Need modifying for a specific board. \r
5  *   FLASH.ORIGIN: starting address of flash\r
6  *   FLASH.LENGTH: length of flash\r
7  *   RAM.ORIGIN: starting address of RAM bank 0\r
8  *   RAM.LENGTH: length of RAM bank 0\r
9  *\r
10  * The values below can be addressed in further linker scripts\r
11  * using functions like 'ORIGIN(RAM)' or 'LENGTH(RAM)'.\r
12  */\r
13 \r
14 MEMORY\r
15 {\r
16   ROM (rx)         : ORIGIN = 0x100000, LENGTH = 0x18000\r
17   RAM (rw)         : ORIGIN = 0x118000, LENGTH = 0x8000\r
18 }\r
19 \r