--- Quote Start ---
If you have some method of getting the initialised code into SSRAM, you should just be able to point the nios's reset vector into SSRAM.
I'm not sure how you are going to manage to initialise the SSRAM though! Since it is unlikely to be initialised at power on, you'll need to keep the nios in soft-reset until the SSRAM contents are valid.
--- Quote End ---
I initialise the SSRAM when Nios in the reset. After initialise the SSRAM the host remove reset with Nios.
Now the project the following adjustments
for Nios
reset vector - ssram
exception vector - onchip_ram
in IDE
text – ssram;
rodata – onchip_ram;
rwdata – onchip_ram;
In this case the Nios carries out the program from SSRAM. The program of the processor is in memory, so?
For reception of the image of SSRAM which the host uses for initialise the SSRAM I use elf2flash.
Now I want to make so that the program of Nios loaded from SSRAM into onchipram.
if in IDE make text = onchip_ram when elf2flash require boot copier files. Where to take it file?