github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/targets/nrf52833-s113v7.ld (about)

     1  
     2  MEMORY
     3  {
     4      FLASH_TEXT (rw) : ORIGIN = 0x00000000 + 0x1C000, LENGTH = 0x80000 - 0x1C000
     5      RAM (xrw)       : ORIGIN = 0x20000000 + 0x1e20,  LENGTH = 0x20000 - 0x1e20
     6  }
     7  
     8  _stack_size = 4K + __softdevice_stack;
     9  
    10  /* These values are needed for the Nordic SoftDevice. */
    11  __app_ram_base = ORIGIN(RAM);
    12  __softdevice_stack = DEFINED(__softdevice_stack) ? __softdevice_stack : 0;
    13  
    14  INCLUDE "targets/arm.ld"