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.
JneW<n>
                                              Up Contents Index Back
──P-Code Instructions───────────────────────────────────────────────────────
 
  Syntax
 
  JneW<n>
 
  /* Branch on Not Equal */
 
  Possible Instructions
 
  JneW1...JneW5, JneWb
 
  See: P-Code Operands
 
  Description
 
  Pops two elements off the stack and checks to see whether or not they
  are equal. If they are not equal, control jumps ahead <n> bytes, or to
  location S. Otherwise execution continues with the next instruction.
 
  Pseudocode equivalent:
 
  If (popW() != popW())
  pc += <n>;
 
  This instruction is generated by the following example:
 
  if (wTest1 == wTest2)         /* generates JneW<n> */
 
 
                                     -♦-