New DV3400

Auto Memory Compression for Maximum Sampling

SALES:
972-272-9392
FAX:
972-494-5814
EMAIL:
»Sales
»Support
»IT Department

TechTools products also available at:
United States Canada Japan
JB, JC

 

JB        bit,addr9                Jump if bit


Words:        2        Cycles:        2 or 3 (jump)        Affects:        none

 

Operation:        If bit is set, a jump to addr9 is executed.

 

Coding:        BTFSC                bit

       GOTO                addr9

 

JC        addr9                Jump if carry


Words:        2        Cycles:        2 or 3 (jump)        Affects:        none

 

Operation:        If the carry bit is set, a jump to addr9 is executed.

 

Coding:        BTFSC                3,0

       GOTO                addr9