◄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(); -♦-