汇编中的获取系统时间
dymamictime procs: db 9,8,7,4,2,0
s1: db '/','/',' ',':',':',' '
start22: mov cx,6
mov bx,offset s
mov si,offset s1
mov di,0
start1: push cx
mov al,cs:[bx]
mov dl,cs:[si]
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 bp,0b800h
mov es,bp
mov byte ptr es:[1980+di],ah
mov byte ptr es:[1982+di],al
mov byte ptr es:[1984+di],dl
inc bx
inc si
add di,6
pop cx
loop start1
in al,60h
cmp al,10h ;Q键的扫描码
je quit
jmp start22
;以上4句为动态获取系统时间的关键
quit: mov ax,4c00h
int 21h
ret
dymamictime endp 哪位能帮忙解释下这个子程序呢?有些地方看不懂