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

我的博客

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

[2017-05-19 17:16] 监测点6.1

(1)下面的程序实现依次用内存0:0~0:15单元中的内容改写程序中的数据,完成程序:
assume cs:codesg
codesg segment
        dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
start:        mov ax,0
        mov ds,ax
        mov bx,0

        mov cx,8
s:        mov ax,[bx]                
        ___________                mov cs:[bx],ax 
        add bx,2
        loop s

        mov ax,4c00h
        int 21h
codesg ends
end st...
阅读全文 |   作者:13805662489 | 评论次数(0) | 浏览次数(713)
页码数(1):  1