Subversion Repositories Kolibri OS

Rev

Rev 159 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
format ELF
610 andrew_pro 2
 
3
include "proc32.inc"
4
 
145 halyavin 5
section '.text' executable
610 andrew_pro 6
public _msys_get_system_clock
7
 
8
align 4
9
proc _msys_get_system_clock stdcall
10
 
11
	mov   eax,3
12
	int   0x40
13
	ret
14
 
15
endp