Commands

Commands can change the flow control of vectors by changing the value of the program counter while the program runs.

The following commands can be executed:

1.    NOP– No operation: the sequencer advances to the next step.

2.    Jump A / Jump B  - the sequencer immediately execute a jump to step. The jump address can be in register A or B. Execution can be conditional or unconditional. See Conditional Execution section.

3.    Pause: suspend program operation. Execution can be conditional.

4.    Halt: end of the program.

Sequencer Command

Conditions *

NOP

None

Jump A (JA) - jump to step N (N is stored in Register A)

None / Equal / Not Equal.

Jump B (JB) - jump to step M (M is stored in Register B)

None / Equal / Not Equal.

Pause

None / Equal / Not Equal.

Halt

None.

* See Conditional Execution

Sequencer Command Overview