-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.ld
More file actions
23 lines (21 loc) · 802 Bytes
/
memory.ld
File metadata and controls
23 lines (21 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
*******************************************************************
* Chip: STM32F100RB
* NOTE: This file is generated by CoIDE and Included by link.ld
* It is used to describe which memory regions may be used
* by the linker.
*******************************************************************
* Internal memory map
* Region Start Size
* flash0 0x08004000 0x0001B800
* flash1 0x0801F800 0x00000800
* sram0 0x20000000 0x00002000
*******************************************************************
*/
MEMORY
{
rom (rx) : ORIGIN = 0x08004000, LENGTH = 0x0001B800
rom1 (rx) : ORIGIN = 0x0801F800, LENGTH = 0x00000800
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00002000
}
_eram = 0x20000000 + 0x00002000;