Subversion Repositories Kolibri OS

Rev

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

Rev 1491 Rev 1563
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 1491 $
8
$Revision: 1563 $
9
 
9
 
Line 900... Line 900...
900
        ret
900
        ret
901
.end:
901
.end:
902
        xor     eax, eax
902
        xor     eax, eax
903
        ret
903
        ret
904
.big:
904
.big:
905
        push    ecx
905
        push    ecx edx
906
        push    -'0'
906
        push    -'0'
907
        mov     ecx, 10
907
        mov     ecx, 10
908
@@:
908
@@:
909
        xor     edx, edx
909
        xor     edx, edx
910
        div     ecx
910
        div     ecx
Line 915... Line 915...
915
@@:
915
@@:
916
        pop     eax
916
        pop     eax
917
        add     al, '0'
917
        add     al, '0'
918
        stosb
918
        stosb
919
        jnz     @b
919
        jnz     @b
920
        pop     ecx
920
        pop     edx ecx
921
        pop     eax
921
        pop     eax
922
        inc     eax
922
        inc     eax
923
        ret
923
        ret
Line 924... Line 924...
924
 
924