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.
Stif<t><n>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  Stif<t><n>
 
  /* Store value indirect through far pointer */
 
  Possible Instructions
 
  StifBb, StifWb, StifLb, StifD, StifR, StifT
 
  See: P-Code Data Types
       P-Code Operands
 
  Description
 
  Stores an indirect word value. The top-of-stack element is assumed to be
  a long pointer and is taken off of the stack.
 
  Pseudocode equivalent:
 
  lpw = (int far *)LongPop() + S;
  *lpw = Pop();
 
  This instruction is generated as follows:
 
  w = 5;
  *lpw = w;           /* generates StifWb */
 
 
                                     -♦-