BC (Breakpoint Clear)

Syntax

BC [[list|start-end|*]]

Parameters

list

List of breakpoints to be removed, with breakpoint numbers separated by spaces. A number identifies each breakpoint. You can use the Breakpoint List (BL) command to display currently set breakpoints and their numbers.

start-end

Range of breakpoints to clear. The command clears breakpoints numbered from start to end, inclusive.

*

Removes all currently set breakpoints.

Description

The Breakpoint Clear (BC) command permanently removes one or more previously set breakpoints.

Mouse and Keyboard

In addition to typing the BC command, you can clear breakpoints with the following shortcuts:

From the Data menu, choose Edit Breakpoints.

Double-click the line containing the breakpoint.

Using the keyboard, move to the line containing the breakpoint, and press F9.

Examples

The following example removes breakpoints 0, 4, and 8:

>BC 0 4 8

The following example removes all breakpoints:

>BC *

The following example removes breakpoints 4, 5, 6, and 7:

>BC 4-7