◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax JzrW<n> /* Branch on Zero */ Possible Instructions JzrW1...JzrW8, JzrWb See: ◄P-Code Operands► Description Pops the top element off the stack and checks to see if it is equal to zero. If it is equal to zero, control jumps ahead <n> bytes or to location S. Otherwise execution continues with the next instruction. Pseudocode equivalent: if (popW() == 0) pc += <n>; The instruction is generated in the condition below: if (wTest != 0) /* generates JzrW<n> */ -♦-