mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
279 B
Plaintext
14 lines
279 B
Plaintext
MEMORY
|
|
{
|
|
flash : ORIGIN = 0x08000000, LENGTH = 32K
|
|
sram : ORIGIN = 0x20000000, LENGTH = 128K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.vectors*) ; *(.text*) } > flash
|
|
.bss : { *(.bss*) } > sram
|
|
.data : { *(.data*) } > sram
|
|
/DISCARD/ : { *(.swift_modhash*) }
|
|
}
|