Instruction Set
3-50
RISC 16-Bit CPU
JNC
Jump if carry not set
JLO
Jump if lower
Syntax
JNC
label
JLO
label
Operation
if C = 0: PC + 2
×
offset −> PC
if C = 1: execute following instruction
Description
The status register carry bit (C) is tested. If it is reset, the 10-bit signed offset
contained in the instruction LSBs is added to the program counter. If C is set,
the next instruction following the jump is executed. JNC (jump if no carry/lower)
is used for the comparison of unsigned numbers (0 to 65536).
Status Bits
Status bits are not affected.
Example
The result in R6 is added in BUFFER. If an overflow occurs, an error handling
routine at address ERROR is used.
ADD
R6,BUFFER
; R6 −> BUFFER
JNC
CONT
; No carry, jump to CONT
ERROR
......
; Error handler start
......
......
......
CONT
......
; Continue with normal program flow
......
......
Example
Branch to STL 2 if byte STATUS contains 1 or 0.
CMP.B
#2,STATUS
JLO
STL 2
; STATUS < 2
......
; STATUS
≥
2, continue here
Summary of Contents for MSP430x4xx Family
Page 1: ...MSP430x4xx Family 2007 Mixed Signal Products User s Guide SLAU056G ...
Page 2: ......
Page 6: ...vi ...
Page 114: ...3 76 RISC 16 Bit CPU ...
Page 304: ...5 20 FLL Clock Module ...
Page 340: ...7 8 Supply Voltage Supervisor ...
Page 348: ...8 8 16 Bit Hardware Multiplier ...
Page 372: ...9 24 32 Bit Hardware Multiplier ...
Page 400: ...10 28 DMA Controller ...
Page 428: ...13 10 Basic Timer1 ...
Page 466: ...15 24 Timer_A ...
Page 522: ...17 30 USART Peripheral Interface UART Mode ...
Page 544: ...18 22 USART Peripheral Interface SPI Mode ...
Page 672: ...23 12 Comparator_A ...
Page 692: ...24 20 LCD Controller ...
Page 746: ...26 28 ADC12 ...