ack/plat/msdos386/libsys/sys_gettime.s
2022-08-19 20:03:48 +02:00

26 lines
332 B
ArmAsm

#
! $Source$
! $State$
! $Revision$
! Declare segments (the order is important).
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
! Get the current system time from MS-DOS.
.define __sys_gettime
__sys_gettime:
int 3
movb ah, 0x2c
int 0x21
mov ebx, esp
mov ebx, 4(ebx)
o16 mov 0(ebx), cx
o16 mov 2(ebx), dx
ret