Like in GNU linker file location counter is supported to get the current location in output section... Is there any way to do the same in scatter file ?
Hello,
You can create execution regions at specific offsets from previous ones, by setting base address as "+offset". For example:
LOADREGION 0x1000000 { REGION1 0x1000000 {...} REGION2 +0x4000 {...} }
Would this achieve what you wish to do?