Subversion Repositories Kolibri OS

Rev

Rev 485 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 485 Rev 551
Line 120... Line 120...
120
                                   ; DRAW WINDOW
120
                                   ; DRAW WINDOW
121
    xor  eax,eax                   ; function 0 : define and draw window
121
    xor  eax,eax                   ; function 0 : define and draw window
122
    mov  ebx,100*65536+100         ; [x start] *65536 + [x size]
122
    mov  ebx,100*65536+100         ; [x start] *65536 + [x size]
123
    mov  ecx,100*65536+40          ; [y start] *65536 + [y size]
123
    mov  ecx,100*65536+40          ; [y start] *65536 + [y size]
124
    mov  edx,[sc.work]             ; color of work area RRGGBB,8->color gl
124
    mov  edx,[sc.work]             ; color of work area RRGGBB,8->color gl
125
    or   edx,0x33000000
125
    or   edx,0x34000000
126
    mov  edi,title
126
    mov  edi,title
127
    mcall
127
    mcall
Line 128... Line 128...
128
 
128