Subversion Repositories Kolibri OS

Rev

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

Rev 1664 Rev 1689
Line 2... Line 2...
2
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
2
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
3
;; Distributed under terms of the GNU General Public License    ;;
3
;; Distributed under terms of the GNU General Public License    ;;
4
;;                                                              ;;
4
;;                                                              ;;
5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
$Revision: 1664 $
7
$Revision: 1689 $
8
 
8
 
Line 793... Line 793...
793
        ret
793
        ret
794
.end:
794
.end:
795
        xor     eax, eax
795
        xor     eax, eax
796
        ret
796
        ret
797
.big:
797
.big:
798
        push    ecx
798
        push    ecx edx
799
        push    -'0'
799
        push    -'0'
800
        mov     ecx, 10
800
        mov     ecx, 10
801
@@:
801
@@:
802
        xor     edx, edx
802
        xor     edx, edx
803
        div     ecx
803
        div     ecx
Line 808... Line 808...
808
@@:
808
@@:
809
        pop     eax
809
        pop     eax
810
        add     al, '0'
810
        add     al, '0'
811
        stosb
811
        stosb
812
        jnz     @b
812
        jnz     @b
813
        pop     ecx
813
        pop     edx ecx
814
        pop     eax
814
        pop     eax
815
        inc     eax
815
        inc     eax
816
        ret
816
        ret
Line 817... Line 817...
817
 
817