NO

Author Topic: Debugger feature ?  (Read 3228 times)

JohnF

  • Guest
Debugger feature ?
« 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

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Debugger feature ?
« Reply #1 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
/Pelle

JohnF

  • Guest
Debugger feature ?
« Reply #2 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