Tool/software:
Hello
I have an application running from RAM. There are four different types of linked sections in the linker file:
1) The main memory sections (.cinit / .const / .econst / .pinit / .switch / .text / .TI.ramfunc) are linked to load from Flash, and run from RAM (They will be copied from Flash to RAM before entering main() using assembly instructions.). For example:
2) The assembly instructions in (codestart / wddisable / copysections / initram) are linked only to Flash. For example:
3) I have another section used to write checksum and version in flash. That one is also linked to flash
4) Some other sectors which are linked only to RAM.
My question is this: For which ones of the first three types (which are somehow linked to Flash) should I use Align(8)? for all of them? even the ones in type 1? Please specify.
Regards
Saeed