Hello,
I am working with C6472 with CCSv4. Suppose I have a code like this:
Some global array definition....
main( )
{
}
some ISR definition( )
{
}
My question is whether the global array definition will be loaded into the memory at the load time or during loading, only the memory locations for that global array will be allocated and the actual values will be assigned during the run-time? The doubt comes to me because the execution starts from main( ). So what about the part before that? I am sorry if the question seems silly.
Regards,
AC.