DemoN/clock.asm
2024-08-08 14:52:38 +03:00

36 lines
1.4 KiB
NASM
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;[]=========================================================================[]
;[] Вывод часов []
;[] v0.03 - последние изменения 01.02.2006 []
;[]=========================================================================[]
Clock
ld a,(ClockOn) ; флаг вывода часов
inc a
ret nz
ld c,Dss.SysTime
rst DssRst ; прочитать данные о времени
ld de,.String
push de
push bc
push hl
ld l,h ; часы
ld h,0
call ConvDecStr8_1
inc de
pop hl ; минуты
ld h,0
call ConvDecStr8_1
inc de
pop hl
ld l,h ; секунды
ld h,0
call ConvDecStr8_1
ld de,71
ld c,Bios.Lp_Set_Place ; установка позиции печати
rst BiosRst : di
pop hl
ld bc,8*256+Bios.Lp_Print_Ln2 ; в рег.B длина строки
rst BiosRst : di
ret
.String DB "00:00:00"