mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-20 05:42:34 +03:00
7 lines
115 B
NASM
7 lines
115 B
NASM
|
format ELF
|
||
|
section '.text' executable
|
||
|
public _msys_get_date
|
||
|
_msys_get_date:
|
||
|
mov eax,29
|
||
|
int 0x40
|
||
|
ret
|