DM642 Memory Section help
hi,
I have just started using DM642 evm. i am having a few problems in th
memory section. there are a lot of sections .bss, .stask, .sysme
etc.etc.
1. If i compile the following code, to which section will the compile
allocate memory for the static/dynamic variables?(at compile/run time)
void main (void)
{
int i;
int j = 6; //is it .bss??
char a[100]; // is it .stack??
char b[100][100];
char *c; c = (char *)malloc(100); //is it .sysmem
}
is there a TI pdf which would give more information on this?
Thanks and Regards
APS
|