This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

linker cmd file: (HIGH) specifier

Hi

In a cmd linker file, what is the purpose of the operator "(HIGH)" used for the allocation of the .stack to RAM? 

Here is a copy-paste of my cmd file: 

SECTIONS

{
.bss : {} > RAM /* GLOBAL & STATIC VARS */
.data : {} > RAM /* GLOBAL & STATIC VARS */
.sysmem : {} > RAM /* DYNAMIC MEMORY ALLOCATION AREA */

.stack : {} > RAM (HIGH) /* SOFTWARE SYSTEM STACK */

[...]

Thank you