Forum Discussion
Altera_Forum
Honored Contributor
19 years agoDavid,
This works for me. // declare the external. extern unsigned char *__bss_start; // somewhere in a function. printf("%u\n",(unsigned int)&__bss_start); The print shows my correct start of bss. Maybe you are trying to access the 'content of' rather than 'address of'. Banx.