首页
社区
课程
招聘
MASM32中, JMP @B 这@是什么意思.谢谢
发表于: 2005-11-26 14:50 9347

MASM32中, JMP @B 这@是什么意思.谢谢

2005-11-26 14:50
9347
收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 171
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
原来有人问了,也答过了,不好意思
2005-11-26 14:56
0
雪    币: 208
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
Local Code Labels

  Syntax:   [instruction] @F
                .
                .
                .
            @@: [statement]
                .
                .
                .
                [instruction] @B

  Description:

     The @@: label defines a local code label, which is in effect until
     the next instance of @@:. The @F and @B operands can be used in
     conditional and unconditional jump statements to jump to the next

     and previous @@: label respectively.

     The @@: label is useful for defining a nearby jump point where a
     full label is not appropriate.

  Example:

           cmp     ax, 18h
           jg      @F
           -                  ;Less than or equal
           -
           -
     @@:                      ;Greater than

           mov     cx, 640    ;Set count

     @@:
           -                  ;Loop statements
           -
           -

           loop    @B         ;Loop back
                                    -o-
2005-11-26 16:16
0
游客
登录 | 注册 方可回帖
返回
//