首页 > 其他 > 详细

MSP430之instruction之JUMP

时间:2015-05-20 00:11:24      阅读:303      评论:0      收藏:0      [点我收藏+]

JMP      Jump unconditionally

Syntax   JMP  label

Operation   PC + 2 × offset −> PC

Description

  The 10-bit signed offset contained in the instruction LSBs is added to the program counter.

Status Bits

  Status bits are not affected.

Hint:

  This one-word instruction replaces the BRANCH instruction in the range of −511 to +512 words relative to the current program counter.

 

JNE   Jump if not equal

JNZ   Jump if not zero

Syntax   JNE  label; JNZ label

Operation   If Z = 0: PC + 2 × offset −> PC
        If Z = 1: execute following instruction
Description

  The status register zero bit (Z) is tested. If it is reset, the 10-bit signed offset contained in the instruction LSBs is added to the program counter. If Z is set, the next instruction following the jump is executed.


Status Bits   Status bits are not affected.


Example  Jump to address TONI if R7 and R8 have different contents.

1 CMP R7,R8  ; COMPARE R7 WITH R8
2 JNE TONI   ; if different: jump
3 ......    ; if equal, continue

 

MSP430之instruction之JUMP

原文:http://www.cnblogs.com/mengdie/p/4515774.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!