mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-24 01:29:34 +08:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
/* Linker script for Luminary Micro LM3S301. */
|
|
|
|
MEMORY {
|
|
rom (rx) : ORIGIN = 0x00000000, LENGTH = 16K
|
|
ram (w) : ORIGIN = 0x20000000, LENGTH = 2K
|
|
}
|
|
|
|
SECTIONS {
|
|
_stack = 0x20000000 + 2K;
|
|
}
|
|
|
|
INCLUDE cm3.ld
|
|
INCLUDE ldscripts/armelf.xc
|