Section 13: Indirect Operations199
Here is what happened when you used the indirect address to store the number.
  The Function              
    2.54 STO g  02              
                   
        The Indirect Address Register  
      R02  
  10.0000
     
                   
            The Desired Register
            R10
  2.5400
 
To recall numbers that are stored in any primary storage register (R00 through R99), you can simply press RCL and the number keys of the register address. You can also recall numbers from primary storage registers using indirect addressing, just like you did when you stored the number in the above example. Numbers in the extended registers (R(100) through R(318)), must be stored and recalled using indirect addressing.
For example, recal the number that is stored in storage register R10 using register R05 as the indirect address register.
Keystrokes Display    
10 STO 05
  10.0000    
  First store the desired register address into the indirect address register.
RCL g 
  RCL IND _ _    
  The HP-41C prompts you for the indirect address number.
05 
  2.5400    
  The number 2.5400 is recalled from storage register R10.
Here is what happened when you used the indirect address to recall the number.
    The Function            
    RCL g  05              
                   
        The Indirect Address Register  
      R05  
  10.0000
     
                   
            The Desired Register
            (Recalled into the X-register.)
            R10
  2.5400