Forum Discussion
Altera_Forum
Honored Contributor
19 years ago --- Quote Start --- originally posted by slacker@May 12 2006, 11:48 AM most of the info. you need can be found in an objdump file, which can be optionally generated by the ide. (nios2-elf-objdump on the command line)
you do, however, have to be wary of where you've decided to place the stack, heap, and exception address.
there's a pretty decent description of how memory is managed (albeit in a linux system) here (http://www.informit.com/articles/article.asp?p=173438).
in general, what you'd like to do is not really possible unless you place the stack and heap in a separate memory or are darn sure that neither your stack nor your heap will "invade" the area that you're attempting to test.
cheers,
- slacker
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=15337)
--- quote end ---
--- Quote End --- Slacker, Thanks for the fast reply. Thats the info I was looking for. Jim