BE [[list|start-end|*]]
list
List of breakpoints to be enabled, 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 enable. The command enables breakpoints numbered from start to end, inclusive.
*
Enables all currently disabled breakpoints.
The Breakpoint Enable (BE) command enables breakpoints that have been temporarily disabled with the Breakpoint Disable (BD) command.
In addition to typing the BE command, you can also enable breakpoints from the Data menu by choosing Edit Breakpoints. There is no keyboard shortcut.
The following example reenables breakpoints 0, 4, and 8:
>BE 0 4 8
The following example enables all disabled breakpoints:
>BE *
The following example enables breakpoints 4, 5, 6, and 7:
>BE 4-7