Subversion Repositories Kolibri OS

Rev

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

Rev 485 Rev 551
Line 78... Line 78...
78
    mcall
78
    mcall
79
                                   ; DRAW WINDOW
79
                                   ; DRAW WINDOW
80
    mov  eax,0                     ; function 0 : define and draw window
80
    mov  eax,0                     ; function 0 : define and draw window
81
    mov  ebx,100*65536+200         ; [x start] *65536 + [x size]
81
    mov  ebx,100*65536+200         ; [x start] *65536 + [x size]
82
    mov  ecx,100*65536+200         ; [y start] *65536 + [y size]
82
    mov  ecx,100*65536+200         ; [y start] *65536 + [y size]
83
    mov  edx,0x13ffffff            ; color of work area RRGGBB,8->color gl
83
    mov  edx,0x14ffffff            ; color of work area RRGGBB,8->color gl
84
    mov  edi,title                 ; WINDOW LABEL
84
    mov  edi,title                 ; WINDOW LABEL
85
    mcall
85
    mcall
Line 86... Line 86...
86
 
86