nrf52805_xxaa.ld 285 B

1234567891011121314
  1. /* Linker script to configure memory regions. */
  2. SEARCH_DIR(.)
  3. GROUP(-lgcc -lc -lnosys)
  4. MEMORY
  5. {
  6. FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x30000
  7. RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x6000
  8. CODE_RAM (rwx) : ORIGIN = 0x800000, LENGTH = 0x6000
  9. }
  10. INCLUDE "nrf_common.ld"