◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax Goto<n> /* Goto offset */ Possible Instructions Goto1..Goto5, Gotos, Gotow Description Performs an unconditional jump, where <n> is a byte displacement. Note that the variant can be used for long backward jumps. pc += <n>; This instruction can be generated by jumping to a forward label using the goto reserved word: goto OK2; /* generates GOTO<n> */ . . OK2: -♦-