kolibrios/programs/develop/metcc/trunk/libc/mesys/delay.asm

11 lines
181 B
NASM
Raw Normal View History

format ELF
section '.text' executable
public _msys_delay
_msys_delay:
;arg1 - time
mov edx,ebx
mov eax,5
mov ebx,[esp+4]
int 0x40
mov ebx,edx
ret 4