Subversion Repositories Kolibri OS

Rev

Rev 502 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 502 Rev 957
Line 198... Line 198...
198
   
198
   
199
       ; DRAW WINDOW
199
       ; DRAW WINDOW
200
    mov  eax,0      ; function 0 : define and draw window
200
    mov  eax,0      ; function 0 : define and draw window
201
    mov  ebx,100*65536+400    ; [x start] *65536 + [x size]
201
    mov  ebx,100*65536+400    ; [x start] *65536 + [x size]
202
    mov  ecx,100*65536+200    ; [y start] *65536 + [y size]
202
    mov  ecx,100*65536+200    ; [y start] *65536 + [y size]
203
    mov  edx,0x130020C0;0x00000040 ; color of work area RRGGBB,8->color glide
203
    mov  edx,0x140020C0;0x00000040 ; color of work area RRGGBB,8->color glide
204
    mov  edi,title
204
    mov  edi,title
Line 205... Line 205...
205
    mcall
205
    mcall
206
   
206