Prism
Operation Manual Issue 2.00
Page 7.25
CHAN_A, CHAN_B, DO_LOOP, DO_RECLK, DO_FUNC,
SYNC_CH, SYNC_BLK, SYNC_REF;
Thus to jump if the sampling frequency was shown as 44.1kHz to a label '
@good_fs
',
the Macro Command would be:
JUMP_IF_LED(441, @good_fs)
On contents of result stores:
JUMP_IF_CHAR('c', @xxx)
or
JCHAR('c', @xxx)
Jump if the character specified is in
the character store; the character
must be enclosed in single quotes;
JUMP_IF_NOT_CHAR('c', @xxx)
or
JNCHAR('c' @xxx)
Opposite condition to the above;
JUMP_IF_LESS(n, @xxx)
or
JL(n,@xxx)
Jump if the value in the numeric store
is less than n;
JUMP_IF_GREATER(n, @xxx)
or
JG(n,@xxx)
Jump if the value in the numeric store
is greater than n;
JUMP_IF_LESS_OR_EQUAL(n, @xxx)
or
JLE(n, @xxx)
Jump if the value in the numeric store
is less than or equal to n;
JUMP_IF_GREATER_OR_EQUAL(n, @xxx)
or
JGE(n, @xxx)
Jump if the value in the numeric store
is greater than or equal to n;
JUMP_IF_EQUAL(n, @xxx)
or
JEQ(n,@xxx)
or
JE(n,@xxx)
Jump if the value in the numeric store
is equal to n;
JUMP_IF_NOT_EQUAL(n, @xxx)
or
JNE(n,@xxx)
Jump if the value in the numeric store
is not equal to n;
In all the above 'n' can be an integer or a floating-point number.
JUMP_IF_PASS(@xxx)
Jump if the global fail flag is clear, e.g.
after a SET_PASS instruction;