mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
e95afc80fb
kinetis.ld includes cortexm_common ldscript, the fields for the isr vectors and fcfield remain in kinetis.ld.
13 lines
344 B
Plaintext
13 lines
344 B
Plaintext
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
|
|
MEMORY
|
|
{
|
|
vectors (rx) : ORIGIN = 0x00000000, LENGTH = 0x400
|
|
flashsec (rx): ORIGIN = 0x00000400, LENGTH = 0x10
|
|
rom (rx) : ORIGIN = 0x00000410, LENGTH = 256K - 0x410
|
|
ram (rwx) : ORIGIN = 0x1fffc000, LENGTH = 32K
|
|
}
|
|
|
|
INCLUDE kinetis.ld
|