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

我的博客

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

[2008-02-16 04:57] 实验4[bx]和loop的使用

(1)(2)
一开始我写的就是下面这段9行指令的:
assume cs:code
 code segment
  mov ax,0020H
  mov ds,ax
  mov bx,0
  mov cx,40h

 s: mov ds:[bx],bl
  inc bx
  loop s

  mov ax,4c00h
  int 21h
 code ends
end
   


(3)
assume cs:codesg
codesg segment
 mov ax,cs
 mov ds,ax
 mov ax,0200h
 mov es,ax ...
阅读全文 |   作者:taotling | 评论次数(1) | 浏览次数(989)
页码数(1):  1