Example:
This example shows you how to set an unconditional breakpoint using F6 (Add/clear breakpoints).
+--------------------------------------------------------------------------------+
| Display Module Source |
| Program: T1520PG1 Library: MYLIB Module: T1520IC2 |
| 46 { |
| 47 if (j<0) return(0); |
| 48 if (hold_formatted_cost[i] == '$') |
| 49 { |
| 50 formatted_cost[j] = hold_formatted_cost[i]; |
| 51 break; |
| 52 } |
| 53 if (i<16 &&; !((i-2)%3)) |
| 54 { |
| 55 formatted_cost[j] = ','; |
| 56 --j; |
| 57 } |
| 58 formatted_cost[j] = hold_formatted_cost[i]; |
| 59 --j; |
| 60 } |
| Debug . . . ___________________________________________________________ |
| ________________________________________________________________________ |
| F3=End program F6=Add/Clear breakpoint F10=Step F11=Display variable |
| F12=Resume F17=Watch variable F18=Work with watch F24=More keys |
| Breakpoint added to line 50 |
+--------------------------------------------------------------------------------+
(C) Copyright IBM Corporation 1992, 2005. All Rights Reserved.