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

我的博客

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

[2012-10-30 21:40] 实验5第5问

code segment 
start:  mov ax,a 
        mov ds,ax
        
        mov ax,b
        mov es,ax
        
        mov ax,c
        mov ss,ax 
                 
        mov ax,0 
        mov bx,0 
        mov cx,8 
         
s:      add al,[bx] 
        add al,es:[bx] 
        mov ss:[bx],al 
        xor ax,ax 
        inc bx 
        loop s 
         
        mov ax,4c00H 
        int 21H 
code ends 

end start 




assume cs:code
a segment
db 1,2,3,4,5,6,7,8
a ends

b segment
db 1,2,3,4,5,6,7,8
b ends

c segment
db 0,0,0,0,0,0,0,0
c ends

code segment
start:        mov ax,a
        mov ds,ax
                
        mov ax,0
        mov bx,0
        mov cx,8
        
s:        add al,[bx]
        add al,[bx+10H]
        mov [bx+20H],al
        xor ax,ax
        inc bx
        loop s
        
        mov ax,4c00H
        int 21H
code ends

end start
评论次数(1)  |  浏览次数(259)  |  类型(汇编作业) |  收藏此文  | 

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

对的

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