Pelles C forum

Pelles C => General discussions => Topic started by: japheth on February 07, 2013, 02:54:31 PM

Title: How to set "current instruction" inside the Debugger
Post by: japheth on February 07, 2013, 02:54:31 PM
Hello,

I recently tried to debug something with the debugger integrated in POIDE and cannot find out

- how to make the debugger show a "mixed" ( C source + assembly ) listing
- how to set the current instruction ( if I just change the EIP register, the debugger is loosing control of the debuggee??? )

I checked the documentation but as far as the debugger is concerned it is relatively "poor".
Title: Re: How to set "current instruction" inside the Debugger
Post by: TimoVJL on February 07, 2013, 03:24:40 PM
- how to make the debugger show a "mixed" ( C source + assembly ) listing
In debug window, press right mouse button and select 'show disassembly'.
Title: Re: How to set "current instruction" inside the Debugger
Post by: japheth on February 07, 2013, 05:54:18 PM

Thanks! Somehow I missed this. And setting EIP to change the current instruction works also.