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

我的博客

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

[2012-06-18 12:36] 实验五第六题

assume        cs:code

a        segment
        dw        1,2,3,4,5,6,7,8,9,0ah,0bh,0ch,0dh,0eh,0fh,0ffh
a        ends

b        segment
        dw        0,0,0,0,0,0,0,0
b        ends

code        segment
        

start:        MOV ax,a
        mov ds,ax
        mov ax,b
        mov ss,ax
        mov sp,30h
        mov bx,0

        mov cx,8h

s:        push        ds:[bx]
        add        bx,2h
        loop        s

        mov ax,4c00h
        ...
阅读全文 | 评论次数(2) | 浏览次数(149) | 所属类型(汇编作业)
页码数(1):  1