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 578... Line 578...
578
   
578
   
579
				   ; DRAW WINDOW
579
				   ; DRAW WINDOW
580
    mov  eax,0			   ; function 0 : define and draw window
580
    mov  eax,0			   ; function 0 : define and draw window
581
    mov  ebx,100*65536+230	   ; [x start] *65536 + [x size]
581
    mov  ebx,100*65536+230	   ; [x start] *65536 + [x size]
582
    mov  ecx,100*65536+170	   ; [y start] *65536 + [y size]
582
    mov  ecx,100*65536+170	   ; [y start] *65536 + [y size]
583
    mov  edx,0x13224466 	   ; color of work area RRGGBB
583
    mov  edx,0x14224466 	   ; color of work area RRGGBB
584
    mov  edi,title
584
    mov  edi,title
Line 585... Line 585...
585
    mcall
585
    mcall
586
   
586