You can ask DOS what the time is by using function 2Ch:
mov ah,2Ch
int 21h
after this call, the following values are returned:
ch = hour.
cl = minute.
dh = second.
dl = 1/100 seconds.
you can then add code to display these values to your liking.
good luck.