English
Language : 

S3P80C5 Datasheet, PDF (132/263 Pages) Samsung semiconductor – 8-Bit CMOS Microcontrollers
S3P80C5/C80C5/C80C8
INSTRUCTION SET
BTJRF — Bit Test, Jump Relative on False
BTJRF
Operation:
Flags:
Format:
dst,src.b
If src(b) is a "0", then PC ← PC + dst
The specified bit within the source operand is tested. If it is a "0", the relative address is added to
the program counter and control passes to the statement whose address is now in the PC;
otherwise, the instruction following the BTJRF instruction is executed.
No flags are affected.
(Note 1)
opc src | b | 0 dst
Bytes Cycles
3
10
Opcode
(Hex)
37
Addr Mode
dst src
RA rb
NOTE: In the second byte of the instruction format, the source address is four bits, the bit address 'b' is
three bits, and the LSB address value is one bit in length.
Example:
Given: R1 = 07H:
BTJRF SKIP,R1.3
→
PC jumps to SKIP location
If working register R1 contains the value 07H (00000111B), the statement "BTJRF SKIP,R1.3"
tests bit 3. Because it is "0", the relative address is added to the PC and the PC jumps to the
memory location pointed to by the SKIP. (Remember that the memory location must be within
the allowed range of + 127 to – 128.)
6-23