P-Code Instructions (pcode.hlp) (Table of Contents; Topic list)
Push<t>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  Push<t>
 
  /* Move floating point value from floating point stack onto pcode */
  /* evaluation stack. */
 
  Possible Instructions
 
  PushR, PushD, PushT
 
  See: P-Code Data Types
 
  Description
 
  Pass floating point arguments to functions.
 
  Pseudocode equivalent:
 
  Push<t>(FpPop<t>());
 
  This instruction is generated by an example like the following:
 
  float f, g;
  foo(f,g);      /* Generates PushR */
 
 
                                     -♦-