Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
145 halyavin 1
format ELF
2
section '.text' executable
3
public _msys_get_screen_size
4
_msys_get_screen_size:
5
;arg1 - x
6
;arg2 - y
7
  mov   eax,14
8
  int   0x40
9
  mov   ecx,[esp+8]
10
  mov   [ecx],ax
11
  mov   word [ecx+2],0
12
  shr   eax,16
13
  mov   ecx,[esp+4]
14
  mov   [ecx],eax
15
  ret   8