Hi,
Hopefully this is an easy one:
I am converting a program that runs OK under SYS/BIOS to work with DSP/BIOS. In my configuration I want to initialise a block of memory to zeros. In the SYS/BIOS CFG file I have this:
Program.sectMap[".bss"] = new Program.SectionSpec();
Program.sectMap[".bss"].loadSegment = "IRAM";
Program.sectMap[".bss"].fill = 0;
What is the equivalent to put in the DSP/BIOS TCF file?
Cheers,
John