Is there a way to place a section at an adress that has a lower limit? I would like to place two execution regions in separate flash banks. There are some code / constant data areas I can place in any of the banks.
So having *an area A containing data for bank0 *an area B containing data that can be in either bank *an area C containing data for bank1
I would like to place them A-B-C but if A and B gets smaller than the size of bank0, I would like to place them A-B-F-C with some filling F to make sure, C starts at the beginning of bank1.
Is that possible? OVERLAY of a load region AB with some empty F followed by C doesn't seem to be possible.
Is there a way to (automatically) get what I want?