News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

Debugger feature ?

Started by JohnF, March 28, 2005, 03:27:21 PM

Previous topic - Next topic

JohnF

Is there a way to instruct the debugger to go around a loop a set number of times? I've been looking for a while and can't find a way.

John

Pelle

More intelligent breakpoint handling (pass-count etc.) is on the wishlist, but not implemented yet.

The only thing to do right now is to add your own code: if (cond) _asm int3 ...

Pelle
/Pelle

JohnF

Quote from: "Pelle"More intelligent breakpoint handling (pass-count etc.) is on the wishlist, but not implemented yet.

The only thing to do right now is to add your own code: if (cond) _asm int3 ...

Pelle

Ok thanks.

John