Hello everybody
Finally I'm writing some assembly programs on Linux, but need a good debugger that supports assembly. Kdbg and DDD run the programs but Kdbg does not trace the code on the source window (just can see how change the registers and the IP register, I have to imagine or trace mentally the code), and DDD does not even show the code and the same thing that only advances IP and show register changes but the code windows is completely blank. They only work fine for C/C++ programs.
The only debugger that is able to load and trace assembly programs is GDB. It traces fine the execution but does not show the system stack, it only shows a function stack to trace the functions execution path and need to see the system stack since I'm working with it (PUSH/POP/ENTER/LEAVE to see and test how parameters are passed to functions, how to create and use stack frames, etc.)
Anybody knows about GOOD a Linux debugger supporting the system stack or how to show the system stack instead of the function execution stack? For my purposes, I do not require the functions-trace stack... I'm creating low level standalone functions...
Thanks for your help