forked from KolibriOS/kolibrios
51d395d0cc
git-svn-id: svn://kolibrios.org@145 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
301 B
NASM
18 lines
301 B
NASM
format ELF
|
|
section '.text' executable
|
|
public _msys_get_key
|
|
_msys_get_key:
|
|
mov eax,2
|
|
int 0x40
|
|
ret
|
|
|
|
public _msys_set_keyboard_mode
|
|
_msys_set_keyboard_mode:
|
|
;arg1 - mode
|
|
mov edx,ebx
|
|
mov eax,66
|
|
xor ebx,ebx
|
|
inc ebx
|
|
mov ecx,[esp+4]
|
|
mov ebx,edx
|
|
ret 4 |