Pelles C forum

Pelles C => General discussions => Topic started by: JohnF on March 28, 2005, 03:27:21 PM

Title: Debugger feature ?
Post by: JohnF on March 28, 2005, 03:27:21 PM
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
Title: Debugger feature ?
Post by: Pelle on March 28, 2005, 03:58:20 PM
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
Title: Debugger feature ?
Post by: JohnF on March 28, 2005, 04:58:01 PM
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