Subversion Repositories Kolibri OS

Rev

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

  1. format ELF
  2.  
  3. include "proc32.inc"
  4.  
  5. section '.text' executable
  6. public _ksys_get_system_clock
  7.  
  8. align 4
  9. proc _ksys_get_system_clock stdcall
  10.  
  11.         mov   eax,3
  12.         int   0x40
  13.         ret
  14.  
  15. endp