Forum Discussion
Altera_Forum
Honored Contributor
21 years ago --- Quote Start --- originally posted by smcnutt@Dec 15 2004, 09:00 AM an automatic variable doesn't have a fixed address. your count variable is
automatic -- do as svhb says to force static allocation: either use the static
keyword at function scope (in which case it will show up as i_cnt.0) or move
it to file scope (where it will show up as simply "i_cnt").
then try using nios2-elf-nm to get your address map -- it's probably
more what you want.
regards,
--scott --- Quote End --- Thank you for your messages. Utility nios2-elf-nm works fine, but have to be source file correct. Nice day Jan