NO

Author Topic: How to set "current instruction" inside the Debugger  (Read 2299 times)

japheth

  • Guest
How to set "current instruction" inside the Debugger
« 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".

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: How to set "current instruction" inside the Debugger
« Reply #1 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'.
May the source be with you

japheth

  • Guest
Re: How to set "current instruction" inside the Debugger
« Reply #2 on: February 07, 2013, 05:54:18 PM »

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