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.
PopW<n>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  PopW<n>
 
  /* Move floating point value from evaluation stack to floating point */
  /* stack                                                             */
 
  Description
 
  Pops <n> words from the stack and store them at the address specified by
  the near pointer on top of stack.
 
  Pseudocode equivalent:
 
  int *pw;
  pw = PopW();
  while (<n>--) *pw++ = PopW();
 
 
                                     -♦-