nrf5340_xxaa_network.ld 449 B

12345678910111213141516
  1. /* Linker script to configure memory regions. */
  2. SEARCH_DIR(.)
  3. GROUP(-lgcc -lc -lnosys)
  4. MEMORY
  5. {
  6. FLASH (rx) : ORIGIN = 0x1000000, LENGTH = 0x40000
  7. EXTFLASH (rx) : ORIGIN = 0x10000000, LENGTH = 0x8000000
  8. RAM (rwx) : ORIGIN = 0x21000000, LENGTH = 0x10000
  9. RAM1 (rwx) : ORIGIN = 0x20000000, LENGTH = 0x40000 /* Application core RAM */
  10. RAM2 (rwx) : ORIGIN = 0x20040000, LENGTH = 0x40000 /* Application core RAM */
  11. }
  12. INCLUDE "nrf_common.ld"