Subversion Repositories Kolibri OS

Rev

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

Rev 307 Rev 1098
Line 16... Line 16...
16
	movsx	ecx,word [scr.height]
16
        movsx   ecx,word [scr.height]
17
	;xor     edx,edx
17
        ;xor     edx,edx
18
	mov	edx,0x01000000
18
        mov     edx,0x01000000
19
	xor	esi,esi
19
        xor     esi,esi
20
	xor	edi,edi
20
        xor     edi,edi
21
	int	0x40
21
        mcall
Line 22... Line 22...
22
 
22
 
23
	movr	 eax,7
23
        mov     eax,7
24
	mov	ebx,[scr_buf.ptr]
24
        mov     ebx,dword [scr_buf.ptr]
25
	mov	ecx,[scr_buf.size]
25
        mov     ecx,dword [scr_buf.size]
26
	xor	edx,edx
26
        xor     edx,edx
Line 27... Line 27...
27
	int	0x40
27
        mcall
28
 
28
 
29
	movr	 eax,13
29
        mov     eax,13
30
	mov	ebx,19*65536+231
30
        mov     ebx,19*65536+231
31
	mov	ecx,19*65536+10
31
        mov     ecx,19*65536+10
Line 32... Line 32...
32
	mov	edx,0x00FF00
32
        mov     edx,0x00FF00
33
	int	0x40
33
        mcall
Line 34... Line 34...
34
 
34
 
35
	mov	edi,.label
35
        mov     edi,.label
36
	call	draw_label
36
        call    draw_label
37
 
37
 
38
	stop_draw_window
38
        stop_draw_window
-
 
39
ret