Action: | The LinkNoLink command does nothing, but can set SPRM 8 to highlight a different button by setting "HH" (byte 6) to 4*button.
If "HH" is less than 4 SPRM 8 will retain its current value (and this command will truely do nothing). |
Order: | If a compare is specified, it is performed first. If the conditions are met the LinkNoLink is executed,
doing nothing except possibly changing SPRM 8. |
Comments: | This command is intended to be used as a cell or button command.
This command is also available as part of class 4, 5, and 6 commands, where it is more useful as a method of setting SPRM 8
in addition to the main purpose of the class 4, 5, and 6 commands. |
Compare operation codes |
register to register | register to constant | Alternate mnemonic | Comments |
M | operation | M | operation |
1 | RegX & RegY | 9 | RegX & K | BC | Bitwise compare, the two operands are anded, if the result is non-zero the condition is true |
2 | RegX == RegY | A | RegX == K | EQ | If the two operands are equal the condition is true |
3 | RegX != RegY | B | RegX != K | NE | If the two operands are not equal the condition is true |
4 | RegX >= RegY | C | RegX >= K | GE | If RegX is greater than or equal to the right operand the condition is true |
5 | RegX > RegY | D | RegX > K | GT | If RegX is greater than the right operand the condition is true |
6 | RegX <= RegY | E | RegX <= K | LE | If RegX is less than or equal to the right operand the condition is true |
7 | RegX < RegY | F | RegX < K | LT | If RegX is less than the right operand the condition is true |