汇编网首页登录博客注册
hero0765的学习博客
博客首页博客互动【做检测题】论坛求助

我的博客

个人首页 |  我的文章 |  我的相册 |  我的好友 |  最新访客 |  文章收藏 |  论坛提问 |  友情链接 |  给我留言  
图片载入中
学习动态
好友圈
友情链接

[2009-01-24 20:10] 检测点14.2

图片载入中
用加法和移位指令计算(ax)=(ax)*10

assume cs:code

code segment
start:
      
      mov bx,0
      mov ax,0011h
      mov cl,1
      shl ax,cl ;左移1位相当于乘以2
      add bx,ax
      
      mov ax,0011h
      mov cl,3
      shl ax,cl;左移3位相当于乘以8
      add bx,ax
      
      
      mov ax,4c00h
      int 21h 


code ends
end start
评论次数(0)  |  浏览次数(437)  |  类型(汇编作业) |  收藏此文  | 
 
 请输入验证码  (提示:点击验证码输入框,以获取验证码