I am adding an external SRAM chip to my Delfino design (ZONE7 using XINTF). The external SRAM is slower than internal SARAM.
I would like to place data and code in the external RAM when speed is not essential/
My Code is C++. I can write my own malloc to allocate memory from ZONE7 (just a memory counter).
How can I do a "new" class command to get memory from ZONE7 rather from the heap in general. probably one of those #pragma DATA_SECTION commands.
Or do a (malloc) with the size of the class I am creating.
Is there a TI trick for this?