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

我的博客

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

[2009-10-11 15:56] 实验14

assume cs:code
code segment
start:

mov ax,0b800h
mov es,ax
mov di,160*12       ;初使化一些参数

mov al,9  ;年
out 70h,al
in al,71h
call time
mov ah,47
mov byte ptr es:[di].4,ah

add di,6
mov al,8  ;月
out 70h,al
in al,71h
call time
mov ah,47
mov byte ptr es:[di].4,ah

add di,6
mov al,7  ;日
out 70h,al
in al,71h
call time
mov ah,0
mov byte ptr es:[di].4,ah

add di,6
mov al,4  ;时
out 70h,al
in al,71h
call time
mov ah,58
mov byte ptr es:[di].4,ah

add di,6
mov al,2  ;分
out 70h,al
in al,71h
call time
mov ah,58
mov byte ptr es:[di].4,ah

add di,6
mov al,0  ;秒
out 70h,al
in al,71h
call time


mov ax,4c00h
int 21h
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
time:  ;显示时间的程序
mov ah,al  ;参数为ah,十位al个位
mov cl,4   ;es:[di]显示地址
shr ah,cl  ;没有返回值
and al,00001111B

add ah,30h
add al,30h

mov byte ptr es:[di],ah
mov byte ptr es:[di].2,al
ret
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;





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