P-Code Instructions (pcode.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Stino<t>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  Stino<t>
 
  /* Store value indirect through near pointer + offset. */
 
  Possible Instructions
 
  StinoB, StinoW, StinoL
 
  See: P-Code Data Types
       P-Code Operands
 
  Description
 
  Generally used to optimize stores to char, int, and long arrays. It
  stores indirect a value using a near pointer and a scaled offset on the
  stack.
 
  Pseudocode equivalent:
 
  p<t> = (<t> *)PopW() + PopW() * sizeof(<t>);
  *p<t> = Pop<t>();
 
  pw[i] = 10;              /* generates StinoW */
 
 
                                     -♦-