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 661
Line 23... Line 23...
23
                dd      mem                     ; required amount of memory
23
                dd      mem                     ; required amount of memory
24
                dd      mem                     ; stack pointer
24
                dd      mem                     ; stack pointer
25
                dd      0, 0                    ; param, icon
25
                dd      0, 0                    ; param, icon
Line 26... Line 26...
26
   
26
 
27
include 'lang.inc'
27
include 'lang.inc'
Line 28... Line 28...
28
include '..\..\..\macros.inc'
28
include 'macros.inc'
Line 29... Line 29...
29
   
29
 
30
START:                                  ; start of execution
30
START:                                  ; start of execution
Line 102... Line 102...
102
   
102
 
103
                                   ; DRAW WINDOW
103
                                   ; DRAW WINDOW
104
    mov  eax,0                     ; function 0 : define and draw window
104
    mov  eax,0                     ; function 0 : define and draw window
105
    mov  ebx,100*65536+250         ; [x start] *65536 + [x size]
105
    mov  ebx,100*65536+250         ; [x start] *65536 + [x size]
106
    mov  ecx,60*65536+150          ; [y start] *65536 + [y size]
106
    mov  ecx,60*65536+150          ; [y start] *65536 + [y size]
107
    mov  edx,0x13ffffff            ; color of work area RRGGBB
107
    mov  edx,0x14ffffff            ; color of work area RRGGBB
108
    mov  edi,title                 ; WINDOW LABEL
108
    mov  edi,title                 ; WINDOW LABEL
Line 109... Line 109...
109
    mcall
109
    mcall