Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
format ELF
2
include "public_stdcall.inc"
3
section '.text' executable
4
public_stdcall _ksys_delay,4
5
;arg1 - time
6
  mov   edx,ebx
7
  mov   eax,5
8
  mov   ebx,[esp+4]
9
  int   0x40
10
  mov   ebx,edx
11
  ret   4