Section 8: Program Editing132
Single-Line Viewing Without Execution
You can use SST (single step) and BST (back step) in PRGM mode to single-step to the desired line of program memory without executing the program. Each press of SST steps forward one line in the program, and each press of BST steps back one line in the program.
Both SST and BST operate only within the current program. Pressing SST when the calculator is set to the end of a program positions the calculator back to the beginning of that program. In a similar way, pressing BST when the calculator is set to the top of a program positions the calculator around to the end of that program.
  00    
  01 LBLTAREA     
       
       
  16 END     
 
       
  Pressing SST when the calculator is positioned here, moves the calculator back to the beginning of this program.
       
     
  00 
  Pressing BST when the calculator is positioned at the top of the program moves the calculator to the end of this program.
       
  01 LBLTAREA     
       
       
       
       
       
  16 END    
 
Lines in a program with names longer than the display are ‘‘scrolled’’ through the display to the left. SST and BST can be used to view all program lines repeatedly, even long instruction names that are scrolled.
Remember, in normal and USER modes, SST is used to execute programs one line at a time, and in PRGM mode, SST is used to view programs without execution. However, BST is used for viewing only and does not execute in PRGM, normal, or USER modes.
Keystrokes Display    
 
  01 REG 40    
  The top of the program.
SST 
  01 LBLTAREA     
  SST moves the calculator forward one line with each press.
SST 
  02 STO 01    
   
g BST 
  01 LBLTAREA     
  BST moves the calculator back one line with each press.
Now, use SST to move the calculator down to line 7 so that you can insert the PSE (pause) instruction.