3.3.6.4 Configure Breakpoints

Each breakpoint has two numbers associated with it: ignore count, which specifies the number of passes before that breakpoint is enabled, and pass count, which specifies the number of passes after which the breakpoint will be deleted.

IGNORE number count
I number count

Set ignore count for breakpoint number to count.

PASSCOUNT number count
P number count

Set pass count for breakpoint number to count.

Both commands may be prefixed with ADDRESS (abbreviated AD), in which case their first argument, n, is treated as a MIX location where the breakpoint is set, rather than its number. For example, the following command sets pass count to 1 for all breakpoints set at location 1000:

 
MIX> ADDRESS PASSCOUNT 1000 1