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

我的博客

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

[2023-02-19 18:18] 实验6

图片载入中
assume cs:codesg,ds:datasg,ss:stacksg
datasg segment
        db '1. display      '
        db '2. brows        '
        db '3. replace      '
        db '4. modify       '
datasg ends

stacksg segment
        dw 0,0,0,0,0,0,0,0
stacksg ends

codesg segment
        start:        mov ax, stacksg
                        mov ss, ax
                        mov sp, 16
                        mov ax, datasg
                        mov ds, ax
                        mov bx, 0
                        mov cx, 4
        s0:                push cx
                        mov si, 3
                        mov cx, 4
        s:                 mov al, [bx+si]
                        and al, 11011111b
                        mov [bx+si], al
                        inc si
                        loop s
                        
                        add bx, 16
                        pop cx
                        loop s0
                        
                        mov ax, 4c00H
                        int 21H
codesg ends
end start
评论次数(0)  |  浏览次数(166)  |  类型(汇编作业) |  收藏此文  | 
 
 请输入验证码  (提示:点击验证码输入框,以获取验证码