◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax JleW<n> /* Branch on Less than or Equal */ Possible Instructions JleW3, JleWb See: ◄P-Code Operands► Description Pops two values off the stack and checks to see if the second is less than or equal to the first. If it is, control jumps to location S. Otherwise processing continues with the next instruction. Pseudocode equivalent: w2 = popW(); w1 = popW(); if (w1 <= w2) pc += <n>; A comparison such as the following generates this instruction: if (w1 > w2) /* generates JleW<n> */ -♦-