This page describes the following instruction:
- Group: PAIR
- Mnemonic: mt
- Opcode: 157d, 9Dh
- Encoding: 1_001_1101b (PAIR_SRC_DST)
- Pseudo-code: if r!=0 then pc=ram[d][o] else pc++
- M:MEMORY T:TRUE
- Source is the memory cell at page D offset O.
- If R is NOT zero, set the Program Counter to source.
The 'M' source is the value of a memory cell in the D-page. See Page Registers for more information on the three page register (D, L, C). The 'T' destination takes the source value as the target offset of a conditional jump (R!=0) to within the current code page. See In-Page Branching for more on this.