sandbox/blue-pill/draugr/stm32f103.ld

12 lines
192 B
Plaintext
Raw Normal View History

2018-03-07 16:06:25 +00:00
MEMORY
{
2018-03-08 03:50:01 +00:00
flash (rx) : ORIGIN = 0x00000000, LENGTH = 128K
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
2018-03-07 16:06:25 +00:00
}
SECTIONS
{
2018-03-08 03:50:01 +00:00
.text : { *(.text*) } > flash
.bss : { *(.bss*) } > sram
2018-03-07 16:06:25 +00:00
}