DSZ Decrement and Skip on Zero. Subtracts 1 from an integer in register R8,
then skips two program memory locations if R8 contains zero.
|
|
The decrement operation is suppressed outside the limits 1 ≤ | r8 | ≤ 1010.
|
|
|
Useful for loops.
|
|
|
x≠y , x≤y , x=y , x>y . Relational tests of x and y.
Each test compares the values in the X and Y registers, and skips two memory locations
if the test condition is not met. The tests use R9 and altered the contents.
|
|
NOP No operation. Useful as a filler in tests
|
|
f  PRGM in W/PRGM mode clears the entire memory to g  NOP (merged code 35 01).
|
|
|
SF 1 SF 2 . Set Flag 1, Set Flag 2.
|
|
f  SF 1 sets flag 1 on while f-1  SF 1 sets it off.
|
|
|
f  SF 2 performs similarly, but using flag 2.
|
|
|
Initially turned off when the calculator is turned on, flags retain their settings until
changed by these operations.
|
|
TF 1 TF 2 . Test Flag 1, Test Flag 2.
|
|
f  TF 1 tests flag 1 skipping two memory locations if flag 1 is off while f-1  TF 1
skips if flag 1 is on.
|
|
|
f  TF 2 performs similarly, but using flag 2.
|
|