汇编语言设计之.pptVIP

  • 5
  • 0
  • 约1.91万字
  • 约 67页
  • 2017-03-31 发布于江苏
  • 举报
汇编语言设计之

(寄存器相对寻址) …… cmp al, 0 je continue mov si, 0 L: shr al, 1 ;逻辑右移 jnc add1 jmp branch_table[si] ;段内间接转移 add1: add si, type branch_table jmp L continue: …… routine1: …… routine2: …… (基址变址寻址) …… cmp al, 0 je continue lea bx, branch_table mov si, 7 * type branch_table mov cx, 8 L: shl al, 1 ;逻辑左移 jnc sub1 jmp word ptr [bx][si]  ;段内间接转移 sub1: sub si, type branch_table ;(si)-2 loop L continue: …… routine1: …… routine2: …… 第5章作业

文档评论(0)

1亿VIP精品文档

相关文档