This page describes the following instruction:
- Group: PAIR
- Mnemonic: nj
- Opcode: 139d, 8Bh
- Encoding: 1_000_1011b (PAIR_SRC_DST)
- Pseudo-code: pc=ram[c][pc]
- N:NUMBER J:JUMP
- Source is the literal following the current opcode.
- Set the Program Counter to source.
The 'N' source is a literal byte embedded in the instruction stream. Reading 'N' acts in the same way as an instruction fetch, only it fetches a literal. The 'J' destination takes the source value as the target offset of an unconditional jump to within the current code page. See In-Page Branching for more on this.