Forum Discussion
Altera_Forum
Honored Contributor
20 years agoLinker Flags in NiosII IDE
Could anyone tell me what I'm doing wrong? My aim is to place an array at a particular address, as an example 0x10000. Help files descibe one way of declaration section as a linker flag ...
Altera_Forum
Honored Contributor
20 years agoI've managed it!
In autogenerated file generated.x I added the section descriptionSECTIONS
{
............................
. = 0x10000;
.frame : { *(.frame) }
} And here it is! The array Frame[] is placed at 0x10000