◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax PopIP<n> /* Branch indirect through near pointer on top of stack. */ See: ◄P-Code Operands► Description Implements the break statement within a switch statement. Prior to exection of a Case<t> instruction, a PushIP instruction is issued which loads the target of a break statement onto the stack. When a break statement is encountered, the value is popped from the stack and loaded into the instruction pointer. Pseudocode equivalent: IP = PopW(); Example: switch (w) { case 1: break; /* generate PopIP */ } -♦-