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

我的博客

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

[2012-11-24 16:59] 实验14

;读COMS RAM 2号单元内容
assume cs:code
code segment
  start:mov ax,0b800h
        mov es,ax
        mov di,160*12
        mov cx,10
       
        mov bl,9
    s:  push cx
        mov al,bl
        out 70h,al
        in al,71h
        mov ah,al
        mov cl,4
        shr ah,cl
        and al,00001111b
        add ah,30h
        add al,30h
        
        mov es:[di],ah
        mov es:[di+2],al
        mov byte ptr es:[di+4],'/'
        add di,6
        dec bl
        pop cx
        loop s

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