• load region and execute region
    can the execute region address exceed the range specified by the load region base address and max size setting?
  • duplicate execution regions in scatter file
    In a scatter file can I put a code segment (eg the vector table) in two different places in the output file even though I only defined it in the code once eg: LR_VECTORTABLE 0x08000000 0x00000140...
  • Load region size vs execution region size
    Trying to the keep the load region under 0x8000 but load region is more then 0x8000 yet execution region is only 0xa7c? How come my load region size is is so much more? This is a Cortex M1 on a Altera...
  • Scatter loading - possible to have 'root region' in library
    Hi everyone, Is it possible for armlink to handle a 'root region' from a library (not an object file)? I've tried to do that via a scatter loading file, but did not succeed. > armlink --noremove...
  • Heap region gets removed when scatter-loading
    I'm playing around with scatter-loading in Keil 5.25 with armcc compiler. Now I have a dummy project that allocates stack and heap in 'default' startup assembly file: Stack_Size EQU 0x00000400 ...