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 ???
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?