1.6.9. Implement jump instructions

[<<<] [>>>]

SETPROGRAMCOUNTER(x)

Use this macro when a command decides that the code interpretation should continue at a different location. The simplest example on how to use this macro is the implementation of the command goto:

COMMAND(GOTO)

SETPROGRAMCOUNTER(PARAMETERNODE);

END

See also PARAMETERNODE.


[<<<] [>>>]