I should allocate some part of RAM with fixed addresses for exchange buffer with FPGA. FPGA works as a master and put data to this memory and DM648 should pickup the data. Textual Configuration (Tconf) allows allocation of a new output sections in memory (that translates to linker MEMORY directive). But to use this allocated memory in the code using "#pragma DATA_SECTION" pragma I should create a named section by linker SECTION directive. And I can not find any way to create section using CCS graphical or textual configuration tools. I really do not want to use a pointer to point to this new MEMORY area. What can I do to create a SECTION using Configuration tool or maybe I can use some other memory management technique?