Can I specify to the linker to locate specific code/data in specific address (using assembly code).
Instead of using; .section .ram, "awx" I like to specify the specific address (I need to do it for many small data/instruction packages)..
Is there other directive like orig ???
This would depend entirely on which toolset you use - it is impossible to give a Non-Specific (Generic) answer other than, Read the manual for the specific toolset that you are using!
I'm using Cortex A8 with gnu tools set. I succeed to locate each data/instructions using ; MEMORY {...} SECTIONS {...} The issue is whether I can do it with simple directive in my assembly code, without editing the linker settings. Something like: replacing the section name with physical address?