P-Code Instructions (pcode.hlp) (Table of Contents; Topic list)
Ldino<t>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  Ldino<t>
 
  /* Load indrect item with scaled offset */
 
  Possible Instructions
 
  LdinoB, LdinoW, LdinoL
 
  See: P-Code Data Types
 
  Description
 
  Reads an item of type <t> from memory using the near pointer and a
  scaled offset popped from the stack. It then pushes the item onto the
  stack.
 
  Pseudocode equivalent:
 
  off = PopW() * sizeof(<t>);
  p<t> = PopW();
  PushT(*(p<t> + off));
 
 
                                     -♦-