Blame view

RIOT/cpu/kinetis_common/ldscripts/kinetis_f512l64u64.ld 587 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /*
   * NXP Kinetis CPU with the following memory layout:
   * 512 kB flash @ 0x00000000
   * 128 kB RAM, split into two banks: 64 kB SRAM_L, 64 kB SRAM_U.
   * SRAM_L ends at 0x1fffffff, SRAM_U begins at 0x20000000
   */
  OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
  OUTPUT_ARCH(arm)
  
  MEMORY
  {
      vectors (rx)   : ORIGIN = 0x00000000,       LENGTH = 0x400
      flashsec (rx)  : ORIGIN = 0x00000400,       LENGTH = 0x10
      rom (rx)       : ORIGIN = 0x00000410,       LENGTH = 512K - 0x410
      ram (rwx)      : ORIGIN = 0x20000000 - 64K, LENGTH = 128K
  }
  
  INCLUDE kinetis.ld