Subversion Repositories Kolibri OS

Rev

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

Rev 539 Rev 661
Line 27... Line 27...
27
		dd	I_END			; program image size
27
                dd      I_END                   ; program image size
28
		dd	0x400000		; required amount of memory
28
                dd      0x400000                ; required amount of memory
29
		dd	0x20000
29
                dd      0x20000
30
		dd	0,0			; reserved=no extended header
30
                dd      0,0                     ; reserved=no extended header
Line 31... Line 31...
31
 
31
 
Line 32... Line 32...
32
include "..\..\..\MACROS.INC"
32
include "MACROS.INC"
33
 
33
 
34
; 0x0+       - program image
34
; 0x0+       - program image
35
; 0x1ffff    - stack
35
; 0x1ffff    - stack
Line 1102... Line 1102...
1102
 
1102
 
1103
				   ; DRAW WINDOW
1103
                                   ; DRAW WINDOW
1104
    mov  eax,0			   ; function 0 : define and draw window
1104
    mov  eax,0                     ; function 0 : define and draw window
1105
    mov  ebx,100*65536+480	   ; [x start] *65536 + [x size]
1105
    mov  ebx,100*65536+480         ; [x start] *65536 + [x size]
1106
    mov  ecx,100*65536+215	   ; [y start] *65536 + [y size]
1106
    mov  ecx,100*65536+215         ; [y start] *65536 + [y size]
1107
    mov  edx,0x13ffffff 	   ; color of work area RRGGBB
1107
    mov  edx,0x14ffffff            ; color of work area RRGGBB
1108
    mov  edi,title		   ; WINDOW LABEL
1108
    mov  edi,title                 ; WINDOW LABEL
Line 1109... Line 1109...
1109
    mcall
1109
    mcall
1110
 
1110