目录

实验任务

访问CMOS RAM 编程:以“年/月/日 时:分:秒”的格式,显示当前的日期、时间。(课本实验14)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
assume cs:code
data segment
time db 'yy/mm/dd hh:mm:ss$' ;int 21h 显示字符串,要求以$结尾
table db 9,8,7,4,2,0 ;各时间量的存放单元
data ends
code segment
start:
mov ax,data
mov ds,ax
mov si,offset table
mov di,offset time
mov cx,6
s:
push cx
mov al,ds:[si] ;读端口
out 70h,al
in al,71h
mov ah,al
mov cl,4
shr ah,cl ;将压缩BCD码分为两个BCD码
and al,00001111b
add ah,30h ;变为字符
add al,30h
mov ds:[di],ah
mov ds:[di+1],al ;写进time
inc si
add di,3
pop cx
loop s
mov ah,0
mov bh,0
mov dh,10 ;置光标于10行40列
mov dl,40
int 10h
mov dx,offset time
mov ah,9 ;显示字符串
int 21h
mov ax,4c00h
int 21h
code ends
end start

结果: