views:

71

answers:

1

Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.

A: 

The Green Hills debugger, MULTI, has a display that will show you all of the function calls on the stack and their functions parameters. I'm not sure if this is what you meant by visual or not. I'm not aware of any debugger or tool that will show the hex dump of a stack and highlight it in a graphical way.

-djhaus

DJ Haus