e5c041df96
Correction of various mistakes in functions of work with files. For work with files 70 function is used. Functions for work with memory are changed for use of the new manager of memory. git-svn-id: svn://kolibrios.org@610 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
186 B
NASM
15 lines
186 B
NASM
format ELF
|
|
|
|
include "proc32.inc"
|
|
|
|
section '.text' executable
|
|
public _msys_get_system_clock
|
|
|
|
align 4
|
|
proc _msys_get_system_clock stdcall
|
|
|
|
mov eax,3
|
|
int 0x40
|
|
ret
|
|
|
|
endp |