Subversion Repositories Kolibri OS

Rev

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

  1. format ELF
  2. section '.text' executable
  3. public _msys_get_key
  4. _msys_get_key:
  5.   mov   eax,2
  6.   int   0x40
  7.   ret
  8.  
  9. public _msys_set_keyboard_mode
  10. _msys_set_keyboard_mode:
  11. ;arg1 - mode
  12.   mov   edx,ebx
  13.   mov   eax,66
  14.   xor   ebx,ebx
  15.   inc   ebx
  16.   mov   ecx,[esp+4]
  17.   mov   ebx,edx
  18.   ret   4