Subversion Repositories Kolibri OS

Rev

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

Rev 1792 Rev 2668
Line 22... Line 22...
22
.az:
22
.az:
23
    and     al, not 0x20
23
    and     al, not 0x20
24
    ret
24
    ret
25
;---------------------------------------------------------------------
25
;---------------------------------------------------------------------
26
char_todown:
26
char_todown:
27
; convert character to uppercase, using cp866 encoding
27
; convert character to lowercase, using cp866 encoding
28
; in: al=symbol
28
; in: al=symbol
29
; out: al=converted symbol
29
; out: al=converted symbol
30
	cmp	al, 'A'
30
	cmp	al, 'A'
31
	jb	.ret
31
	jb	.ret
32
	cmp	al, 'Z'
32
	cmp	al, 'Z'