armgcc_s340_nrf52840_xxaa.ld 399 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Linker script to configure memory regions. */
  2. SEARCH_DIR(.)
  3. GROUP(-lgcc -lc -lnosys)
  4. MEMORY
  5. {
  6. FLASH (rx) : ORIGIN = 0x31000, LENGTH = 0xcf000
  7. RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x3e000
  8. }
  9. SECTIONS
  10. {
  11. }
  12. SECTIONS
  13. {
  14. . = ALIGN(4);
  15. .mem_section_dummy_ram :
  16. {
  17. }
  18. } INSERT AFTER .data;
  19. SECTIONS
  20. {
  21. .mem_section_dummy_rom :
  22. {
  23. }
  24. } INSERT AFTER .text
  25. INCLUDE "nrf_common.ld"