◄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> */ -♦-