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

我的博客

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

[2012-10-31 19:43] 实验4 [BX]和loop的使用 121页

(1) 编程,向内存0:200~0:23F依次传送数据0~63(3FH)。
assume cs:codesg

codesg segment

     mov ax,0020h

     mov ds,ax

     mov bx,0

     mov dl,0

     mov cx,40h

s:   mov [bx],dl

     inc dl

     inc bx

     loop s

 

     mov ax,4c00h

     int 21h

 

codesg ends

end
我的另一个方法
.................................
assume cs:code
code segment
  mov ax,0020h
  mov ds,ax
  mov bx,3fh
  mov cx,3fh
s:mov [bx],bl
  sub bl,1
  loop s
  mov ax,4c00h
  int 21h
  code ends
  end
评论次数(1)  |  浏览次数(656)  |  类型(汇编作业) |  收藏此文  | 

[  fpamc   发表于  2012-10-31 19:52  ]

对的。

 
 请输入验证码  (提示:点击验证码输入框,以获取验证码