forked from KolibriOS/kolibrios
71b99beec5
git-svn-id: svn://kolibrios.org@7855 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
189 B
NASM
15 lines
189 B
NASM
format ELF
|
|
|
|
include "../proc32.inc"
|
|
|
|
section '.text' executable
|
|
public _ksys_get_system_clock
|
|
|
|
align 4
|
|
proc _ksys_get_system_clock stdcall
|
|
|
|
mov eax,3
|
|
int 0x40
|
|
ret
|
|
|
|
endp |