Subversion Repositories Kolibri OS

Rev

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

Rev 529 Rev 551
Line 248... Line 248...
248
 
248
 
249
                                   ; DRAW WINDOW
249
                                   ; DRAW WINDOW
250
    xor  eax, eax                  ; function 0 : define and draw window
250
    xor  eax, eax                  ; function 0 : define and draw window
251
    mov  ebx, 160*65536+415        ; [x start] *65536 + [x size]
251
    mov  ebx, 160*65536+415        ; [x start] *65536 + [x size]
252
    mov  ecx, 160*65536+100        ; [y start] *65536 + [y size]
252
    mov  ecx, 160*65536+100        ; [y start] *65536 + [y size]
253
    mov  edx, 0x13DDDDDD           ; color of work area RRGGBB
253
    mov  edx, 0x14DDDDDD           ; color of work area RRGGBB
254
    mov  edi, title                ; WINDOW LABEL
254
    mov  edi, title                ; WINDOW LABEL
Line 255... Line 255...
255
    mcall
255
    mcall
256
 
256