sandbox/blue-pill/blinky/bluepill.ld

12 lines
192 B
Plaintext
Raw Normal View History

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