Files
swift-mirror/utils/embedded-test-support/arm-qemu-stm32f1/linkerscript.ld

14 lines
277 B
Plaintext

MEMORY
{
flash : ORIGIN = 0x08000000, LENGTH = 32K
sram : ORIGIN = 0x20000000, LENGTH = 8K
}
SECTIONS
{
.text : { *(.vectors*) ; *(.text*) } > flash
.bss : { *(.bss*) } > sram
.data : { *(.data*) } > sram
/DISCARD/ : { *(.swift_modhash*) }
}