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

我的博客

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

[2014-10-26 11:35] 实验4

assume cs:code

code segment
   start:mov ax,0
         mov ds,ax
         mov bx,200h
         mov cx,40h   ;64
       s:mov [bx],al
         inc bx
         inc ax
         loop s

        mov ax,4c00h
        int 21h
code ends
end start


2.
assume cs:code

code segment
   start:mov ax,0020h
         mov ds,ax
         mov bx,0
         mov cx,40h
       s:mov [bx],bl
         inc bx
         loop s
        mov ax,4c00h
        int 21h
code ends
end start

3.
assume cs:code
code segment
  start:mov ax,cs
        mov ds,ax
        mov ax,0020h
        mov es,ax
        mov bx,0
        sub cx,5
        mov ax,0
      s:mov al,[bx]
        mov es:[bx],al
        inc bx
        loop s

        mov ax,4c00h
        int 21h
code ends
end start
题外:
assume cs:code

code segment
   start:mov ax,0
         mov ds,ax
         mov bx,200h
         mov cx,40h   ;64
       s:mov [bx],al
         inc bx
         loop s

        mov ax,4c00h
        int 21h
code ends
end start
0:0200到0:023f置0
评论次数(0)  |  浏览次数(430)  |  类型(汇编作业) |  收藏此文  | 
 
 请输入验证码  (提示:点击验证码输入框,以获取验证码